Revision 9795b9d2c4edd49d55a92dea16841cb8be06dcf7 authored by Dmitri Naumov on 16 March 2023, 19:05:40 UTC, committed by Dmitry Yu. Naumov on 03 April 2023, 14:20:57 UTC
1 parent 1401fbc
Raw File
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