mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
20 lines
900 B
CMake
20 lines
900 B
CMake
target_sources(nglib PRIVATE nglib.cpp)
|
|
|
|
if(USE_OCC)
|
|
target_sources(nglib PRIVATE nglib_occ.cpp)
|
|
install(FILES nglib_occ.h DESTINATION ${NG_INSTALL_DIR_INCLUDE} COMPONENT netgen_devel)
|
|
endif(USE_OCC)
|
|
|
|
if(EMSCRIPTEN)
|
|
target_compile_options(nglib PUBLIC $<TARGET_PROPERTY:ngcore,INTERFACE_COMPILE_OPTIONS>)
|
|
target_compile_definitions(nglib PUBLIC $<TARGET_PROPERTY:ngcore,INTERFACE_COMPILE_DEFINITIONS>)
|
|
target_include_directories(nglib PUBLIC $<TARGET_PROPERTY:ngcore,INTERFACE_INCLUDE_DIRECTORIES>)
|
|
else(EMSCRIPTEN)
|
|
target_link_libraries(nglib PUBLIC ngcore)
|
|
endif(EMSCRIPTEN)
|
|
|
|
target_link_libraries( nglib PRIVATE ${MPI_CXX_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${JPEG_LIBRARIES} ${MKL_LIBRARIES} ${ZLIB_LIBRARIES} ${OCC_LIBRARIES} netgen_cgns )
|
|
|
|
install(TARGETS nglib netgen_cgns ${NG_INSTALL_DIR})
|
|
install(FILES nglib.h DESTINATION ${NG_INSTALL_DIR_INCLUDE} COMPONENT netgen_devel)
|