mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
15 lines
554 B
CMake
15 lines
554 B
CMake
|
|
add_library(ngcore archive.cpp version.cpp)
|
|
|
|
set_target_properties(ngcore PROPERTIES POSITION_INDEPENDENT_CODE ON )
|
|
target_compile_definitions(ngcore PRIVATE -DNGCORE_EXPORTS)
|
|
|
|
install(TARGETS ngcore DESTINATION ${NG_INSTALL_DIR} COMPONENT netgen)
|
|
|
|
install(FILES ngcore.hpp archive.hpp type_traits.hpp version.hpp ngcore_api.hpp
|
|
DESTINATION ${NG_INSTALL_DIR_INCLUDE}/core COMPONENT netgen_devel)
|
|
|
|
if(ENABLE_CPP_CORE_GUIDELINES_CHECK)
|
|
set_target_properties(ngcore PROPERTIES CXX_CLANG_TIDY "${DO_CLANG_TIDY}")
|
|
endif(ENABLE_CPP_CORE_GUIDELINES_CHECK)
|