Files
create/src/Mod/OpenSCAD/CMakeLists.txt
Sebastian Hoogen 1d0a79a5f2 Enhancements to OpenSCAD module
interpolate OpenSCAD surface elements (heightmaps) to BSplineSurface
ignore render statement #21
handle difference object with only one child #46
fix sign of import origin in prototype
fixed syntax of minkowski statement
Added Icon for AddOpenSCADElement #50 and fixed typo in OpenSCAD module
ignore OpenSCAD Modifiers #31
handle fuse with a single child
remove redefinition of python list
make OpenSCAD importCSG avavailable in command line mode
add modifier characters to the label of the top affected object
started translation
remove ColorCodeShapes command from toolbar and menu
Added toolbar with Part tools to OpenSCAD WB
remove OpenSCAD prototype importer from build
2012-10-25 10:23:28 +02:00

45 lines
847 B
CMake

SET(OpenSCAD_SRCS
Init.py
InitGui.py
OpenSCAD_rc.py
OpenSCAD2Dgeom.py
OpenSCADFeatures.py
OpenSCADUtils.py
OpenSCADCommands.py
exportCSG.py
importCSG.py
tokrules.py
colorcodeshapes.py
expandplacements.py
replaceobj.py
)
SOURCE_GROUP("" FILES ${OpenSCAD_SRCS})
SET(ply_SRCS
ply/lex.py
ply/README
ply/yacc.py
ply/__init__.py
)
SOURCE_GROUP("ply" FILES ${ply_SRCS})
set(all_files ${OpenSCAD_SRCS} ${ply_SRCS})
ADD_CUSTOM_TARGET(OpenSCAD ALL
SOURCES ${allfiles}
)
fc_copy_sources(OpenSCAD "${CMAKE_BINARY_DIR}/Mod/OpenSCAD" ${all_files})
INSTALL(
FILES
${ply_SRCS}
DESTINATION
Mod/OpenSCAD/ply
)
INSTALL(
FILES
${OpenSCAD_SRCS}
DESTINATION
Mod/OpenSCAD
)