https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: c98be45a72aa700f35a2ef59e6a027e671f4576a authored by Wenqing Wang on 08 October 2021, 15:27:35 UTC
[LIE/Test] Enabled one test
Tip revision: c98be45
CMakeLists.txt
get_source_files(SOURCES)
append_source_files(SOURCES BHE)
append_source_files(SOURCES BoundaryConditions)
append_source_files(SOURCES LocalAssemblers)

ogs_add_library(HeatTransportBHE ${SOURCES})

target_link_libraries(
    HeatTransportBHE PUBLIC ProcessLib
    PRIVATE ParameterLib
            $<$<TARGET_EXISTS:pybind11::pybind11>:pybind11::pybind11>
)

if(OGS_BUILD_TESTING)
    include(Tests.cmake)
endif()
back to top