Revision cf2bdc8619c823a665459c073e3ab2d151e2b2d7 authored by Norbert Grunwald on 31 March 2021, 12:33:23 UTC, committed by Norbert Grunwald on 31 March 2021, 12:33:38 UTC
1 parent 3256cef
Raw File
CMakeLists.txt
get_source_files(SOURCES)

ogs_add_library(ThermalTwoPhaseFlowWithPP ${SOURCES})
if(BUILD_SHARED_LIBS)
    install(TARGETS ThermalTwoPhaseFlowWithPP
            LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
    )
endif()
target_link_libraries(
    ThermalTwoPhaseFlowWithPP PUBLIC ProcessLib PRIVATE ParameterLib
)

if(OGS_BUILD_TESTING)
    include(Tests.cmake)
endif()
back to top