https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: ec4977a19cd00b4e2843365df7f67bf79a76a2ba authored by nagelt on 02 June 2021, 18:56:56 UTC
Merge branch 'MFront_Update' into 'master'
Tip revision: ec4977a
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