Revision 64d64b2ab56e118dd639359c0c02daaf436a903c authored by Christoph Lehmann on 11 April 2023, 05:51:04 UTC, committed by Christoph Lehmann on 26 April 2023, 15:01:24 UTC
1 parent 89c64e7
Raw File
CMakeLists.txt
get_source_files(SOURCES)
ogs_add_library(ParameterLib ${SOURCES})

target_link_libraries(
    ParameterLib PUBLIC MathLib PRIVATE BaseLib exprtk MeshLib
)

target_precompile_headers(ParameterLib PRIVATE [["BaseLib/Error.h"]]
    [["BaseLib/ConfigTree.h"]] [["BaseLib/Logging.h"]]
    [["ParameterLib/Parameter.h"]] <Eigen/Core>)
back to top