2015-03-06 14:59:14 +01:00
|
|
|
add_library(stl ${NG_LIB_TYPE}
|
|
|
|
meshstlsurface.cpp stlgeom.cpp stlgeomchart.cpp
|
|
|
|
stlgeommesh.cpp stlline.cpp stltool.cpp stltopology.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
if(NOT WIN32)
|
|
|
|
target_link_libraries( stl mesh ${PYTHON_LIBS})
|
|
|
|
target_link_libraries( stl ${PYTHON_LIBS})
|
2015-04-08 20:04:28 +02:00
|
|
|
install( TARGETS stl DESTINATION lib COMPONENT netgen )
|
2015-03-06 14:59:14 +01:00
|
|
|
endif(NOT WIN32)
|
|
|
|
|
|
|
|
if(USE_GUI)
|
|
|
|
add_library(stlvis ${NG_LIB_TYPE}
|
2015-10-19 10:08:30 +02:00
|
|
|
vsstl.cpp
|
2015-03-06 14:59:14 +01:00
|
|
|
)
|
|
|
|
if(NOT WIN32)
|
|
|
|
target_link_libraries( stlvis stl )
|
2015-04-08 20:04:28 +02:00
|
|
|
install( TARGETS stlvis DESTINATION lib COMPONENT netgen )
|
2015-03-06 14:59:14 +01:00
|
|
|
endif(NOT WIN32)
|
|
|
|
endif(USE_GUI)
|
|
|
|
|