https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 70c58f80fba7f0d5edbac52975afc905f2805916 authored by Christoph Lehmann on 09 October 2023, 08:17:59 UTC
Merge branch 'reduce-linear-solver-includes' into 'master'
Tip revision: 70c58f8
CMakeLists.txt
get_source_files(SOURCES)

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

target_precompile_headers(PhaseField 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