netgen/libsrc/stlgeom/CMakeLists.txt

27 lines
757 B
CMake
Raw Normal View History

2015-03-06 18:59:14 +05:00
add_library(stl ${NG_LIB_TYPE}
meshstlsurface.cpp stlgeom.cpp stlgeomchart.cpp
2016-12-12 14:47:05 +05:00
stlgeommesh.cpp stlline.cpp stltool.cpp stltopology.cpp python_stl.cpp
2015-03-06 18:59:14 +05:00
)
if(NOT WIN32)
2017-01-09 22:45:12 +05:00
target_link_libraries( stl mesh ${PYTHON_LIBRARIES})
target_link_libraries( stl ${PYTHON_LIBRARIES})
2016-02-08 19:53:16 +05:00
install( TARGETS stl ${ng_install_dir})
2015-03-06 18:59:14 +05:00
endif(NOT WIN32)
if(USE_GUI)
add_library(stlvis ${NG_LIB_TYPE}
2015-10-19 13:08:30 +05:00
vsstl.cpp
2015-03-06 18:59:14 +05:00
)
if(NOT WIN32)
target_link_libraries( stlvis stl )
2016-02-08 19:53:16 +05:00
install( TARGETS stlvis ${ng_install_dir})
2015-03-06 18:59:14 +05:00
endif(NOT WIN32)
endif(USE_GUI)
2017-01-16 18:56:57 +05:00
install(FILES
meshstlsurface.hpp stlgeom.hpp stlline.hpp
stltool.hpp stltopology.hpp vsstl.hpp
DESTINATION ${INCDIR}/stlgeom COMPONENT netgen_devel
)