mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-12 06:00:33 +05:00
20 lines
767 B
CMake
20 lines
767 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)
|
|
|
|
target_link_libraries(nglib PUBLIC ngcore)
|
|
|
|
target_link_libraries( nglib PRIVATE ${MPI_CXX_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${JPEG_LIBRARIES} ${MKL_LIBRARIES} ${ZLIB_LIBRARIES} ${OCC_LIBRARIES} netgen_cgns )
|
|
|
|
if(EMSCRIPTEN)
|
|
target_link_options(nglib PUBLIC -sALLOW_MEMORY_GROWTH)
|
|
target_link_options(nglib PUBLIC -pthread -sPTHREAD_POOL_SIZE=16)
|
|
target_compile_options(nglib PUBLIC -pthread)
|
|
endif(EMSCRIPTEN)
|
|
|
|
install(TARGETS nglib netgen_cgns ${NG_INSTALL_DIR})
|
|
install(FILES nglib.h DESTINATION ${NG_INSTALL_DIR_INCLUDE} COMPONENT netgen_devel)
|