https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 9ab2ffcaaccdfdb3b8c43de158ca0e9140741ec2 authored by Dmitry Yu. Naumov on 31 March 2023, 11:31:41 UTC
Merge branch 'THM_updateConstitutive' into 'master'
Tip revision: 9ab2ffc
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