https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: cf2bdc8619c823a665459c073e3ab2d151e2b2d7 authored by Norbert Grunwald on 31 March 2021, 12:33:23 UTC
update Clausius-Clapeyron test w.r.t. new exact gas constant
Tip revision: cf2bdc8
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