https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: af9308c85e87dfdf02cecad8fa330d2f0b949209 authored by joergbuchwald on 30 July 2021, 09:59:54 UTC
Merge branch 'fix_specific_heat_capacity' into 'master'
Tip revision: af9308c
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