https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 30473171a87d576ca61ee520915a4b4f0ab5a6e4 authored by Dmitri Naumov on 01 October 2021, 09:51:56 UTC
[T/TH2M] Slightly relax tolerance for gas pressure
Tip revision: 3047317
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