2015-03-06 18:59:14 +05:00
|
|
|
add_definitions(-DNGINTERFACE_EXPORTS)
|
|
|
|
add_library(csg ${NG_LIB_TYPE}
|
|
|
|
algprim.cpp brick.cpp
|
|
|
|
bspline2d.cpp csgeom.cpp csgparser.cpp curve2d.cpp edgeflw.cpp
|
|
|
|
explicitcurve2d.cpp extrusion.cpp gencyl.cpp genmesh.cpp identify.cpp
|
|
|
|
manifold.cpp meshsurf.cpp polyhedra.cpp revolution.cpp singularref.cpp
|
|
|
|
solid.cpp specpoin.cpp spline3d.cpp surface.cpp triapprox.cpp zrefine.cpp
|
|
|
|
python_csg.cpp
|
|
|
|
)
|
|
|
|
if(APPLE)
|
|
|
|
set_target_properties( csg PROPERTIES SUFFIX ".so")
|
|
|
|
endif(APPLE)
|
|
|
|
|
|
|
|
if(NOT WIN32)
|
|
|
|
target_link_libraries(csg mesh ${PYTHON_LIBS})
|
|
|
|
target_link_libraries(csg ${PYTHON_LIBS})
|
2016-02-08 19:53:16 +05:00
|
|
|
install( TARGETS csg ${ng_install_dir})
|
2015-03-06 18:59:14 +05:00
|
|
|
endif(NOT WIN32)
|
|
|
|
|
|
|
|
|
|
|
|
if(USE_GUI)
|
2015-10-19 13:08:30 +05:00
|
|
|
add_library(csgvis ${NG_LIB_TYPE} vscsg.cpp )
|
2015-03-06 18:59:14 +05:00
|
|
|
if(NOT WIN32)
|
|
|
|
target_link_libraries(csgvis csg visual)
|
|
|
|
if(APPLE)
|
|
|
|
set_target_properties( csgvis PROPERTIES SUFFIX ".so")
|
|
|
|
endif(APPLE)
|
2016-02-08 19:53:16 +05:00
|
|
|
install( TARGETS csgvis ${ng_install_dir})
|
2015-03-06 18:59:14 +05:00
|
|
|
endif(NOT WIN32)
|
|
|
|
endif(USE_GUI)
|
|
|
|
|