45 lines
841 B
CMake
Executable File
45 lines
841 B
CMake
Executable File
|
|
|
|
# collect all the python files:
|
|
#FILE( GLOB MachDist_SRCS ./*.py )
|
|
SET(MachDist_SRCS
|
|
Init.py
|
|
InitGui.py
|
|
ApplyingBC_IC.py
|
|
mach_dist_gui.py
|
|
machdist_rc.py
|
|
Parameter.py
|
|
postprocess.py
|
|
postprocess_gui.py
|
|
calculix_postprocess.py
|
|
MachiningDistortionCommands.py
|
|
User_Interface_Mach_Dist.py
|
|
machdist_rc.py
|
|
MachDistMaterial.py
|
|
MachDistMesh.py
|
|
MachDistAnalysis.py
|
|
MachDistIsostatic.py
|
|
MachDistAlignment.py
|
|
MachDistMoveTools.py
|
|
Parameter.ui
|
|
Material.ui
|
|
Aligment.ui
|
|
JobControl.ui
|
|
)
|
|
SOURCE_GROUP("" FILES ${MachDist_SRCS})
|
|
|
|
|
|
ADD_CUSTOM_TARGET(Machining_Distortion ALL
|
|
SOURCES ${MachDist_SRCS}
|
|
)
|
|
|
|
fc_copy_sources(Machining_Distortion "${CMAKE_BINARY_DIR}/Mod/Machining_Distortion" ${MachDist_SRCS})
|
|
|
|
|
|
INSTALL(
|
|
FILES
|
|
${MachDist_SRCS}
|
|
DESTINATION
|
|
Mod/Machining_Distortion
|
|
)
|