Revision 4d0e5818cddd539094c4d1ce6968962365417662 authored by project_120_bot2 on 26 October 2023, 11:35:04 UTC, committed by Lars Bilke on 26 October 2023, 16:42:04 UTC
1 parent a8c26ad
Raw File
CMakeLists.txt
get_source_files(SOURCES)

ogs_add_library(TwoPhaseFlowWithPP ${SOURCES})
target_link_libraries(TwoPhaseFlowWithPP PUBLIC ProcessLib PRIVATE ParameterLib)

target_precompile_headers(TwoPhaseFlowWithPP PRIVATE [["BaseLib/Error.h"]]
    [["BaseLib/ConfigTree.h"]] [["BaseLib/Logging.h"]]
    [["ProcessLib/Process.h"]] [["MaterialLib/MPL/Medium.h"]]
    [["MaterialLib/MPL/Property.h"]] <Eigen/Core>)

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