https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 96974e765b2df991bd5c26eba83e233fbdad4f80 authored by Jörg Buchwald on 01 June 2021, 12:53:26 UTC
rename point heat source project/geometry files
Tip revision: 96974e7
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