Revision 5afcebd9245b51f0329a42c2c2afbf01534242a9 authored by Dmitri Naumov on 12 January 2023, 21:32:13 UTC, committed by Lars Bilke on 20 February 2023, 14:35:28 UTC
1 parent 663e3fc
Raw File
CMakeLists.txt
# Source files
get_source_files(SOURCES)

# Create the library
ogs_add_library(MeshGeoToolsLib ${SOURCES})

target_link_libraries(
    MeshGeoToolsLib PUBLIC GeoLib MathLib PRIVATE BaseLib MeshLib
)

target_precompile_headers(MeshGeoToolsLib PRIVATE [["BaseLib/Error.h"]]
    [["BaseLib/ConfigTree.h"]] [["BaseLib/Logging.h"]] [["MeshLib/Mesh.h"]]
    [["MeshLib/Elements/Element.h"]])
back to top