2022-04-27 16:42:04 +05:00
|
|
|
target_sources(nglib PRIVATE nglib.cpp)
|
2015-03-06 18:59:14 +05:00
|
|
|
|
2022-04-27 16:42:04 +05:00
|
|
|
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)
|
2015-10-19 13:08:30 +05:00
|
|
|
|
2023-09-06 19:27:27 +05:00
|
|
|
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)
|
2018-12-12 15:05:17 +05:00
|
|
|
|
2023-09-14 14:39:07 +05:00
|
|
|
target_link_libraries( nglib PRIVATE ${MPI_CXX_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${JPEG_LIBRARIES} ${MKL_LIBRARIES} ${ZLIB_LIBRARIES} occ_libs netgen_cgns )
|
2015-03-06 18:59:14 +05:00
|
|
|
|
2022-04-27 16:42:04 +05:00
|
|
|
install(TARGETS nglib netgen_cgns ${NG_INSTALL_DIR})
|
2018-01-23 14:06:12 +05:00
|
|
|
install(FILES nglib.h DESTINATION ${NG_INSTALL_DIR_INCLUDE} COMPONENT netgen_devel)
|