https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 52f7cfb274283e5fe7f059b2e7d86c7738e9ce5b authored by Christoph Lehmann on 26 April 2023, 09:45:45 UTC
Merge branch 'fix-ci-xvfb-run' into 'master'
Tip revision: 52f7cfb
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