netgen/libsrc/geom2d/CMakeLists.txt

20 lines
576 B
CMake
Raw Normal View History

2015-03-06 14:59:14 +01:00
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)
2015-03-06 14:59:14 +01:00
if(NOT WIN32)
2017-01-09 18:45:12 +01:00
target_link_libraries(geom2d mesh ${PYTHON_LIBRARIES})
2016-02-08 15:53:16 +01:00
install( TARGETS geom2d ${ng_install_dir})
2015-03-06 14:59:14 +01:00
endif(NOT WIN32)
if(USE_GUI)
2015-10-19 10:08:30 +02:00
add_library(geom2dvis ${NG_LIB_TYPE} vsgeom2d.cpp)
2015-03-06 14:59:14 +01:00
if(NOT WIN32)
target_link_libraries(geom2dvis geom2d)
2016-02-08 15:53:16 +01:00
install( TARGETS geom2dvis ${ng_install_dir})
2015-03-06 14:59:14 +01:00
endif(NOT WIN32)
endif(USE_GUI)