Revision 3b5cec3d6ec5aafa79f45902e999e53649f3084d authored by Lars Bilke on 06 February 2023, 08:02:08 UTC, committed by Lars Bilke on 06 February 2023, 08:02:08 UTC
Two minor updates

See merge request ogs/ogs!4472
2 parent s 6e57ff5 + 5af43eb
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