mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
20 lines
576 B
CMake
20 lines
576 B
CMake
add_definitions(-DNGLIB_EXPORTS)
|
|
add_library(geom2d ${NG_LIB_TYPE} genmesh2d.cpp geom2dmesh.cpp geometry2d.cpp python_geom2d.cpp )
|
|
if(APPLE)
|
|
set_target_properties( geom2d PROPERTIES SUFFIX ".so")
|
|
endif(APPLE)
|
|
|
|
if(NOT WIN32)
|
|
target_link_libraries(geom2d mesh ${PYTHON_LIBRARIES})
|
|
install( TARGETS geom2d ${ng_install_dir})
|
|
endif(NOT WIN32)
|
|
|
|
if(USE_GUI)
|
|
add_library(geom2dvis ${NG_LIB_TYPE} vsgeom2d.cpp)
|
|
if(NOT WIN32)
|
|
target_link_libraries(geom2dvis geom2d)
|
|
install( TARGETS geom2dvis ${ng_install_dir})
|
|
endif(NOT WIN32)
|
|
endif(USE_GUI)
|
|
|