Files
create/src/Mod/Fem/CMakeLists.txt
Przemo Firszt 5928a70ac2 FEM: Add FemCommand class and use it in _CommandFrequencyAnalysis
FemCommand class will gather all common functions/propertied od FEM gui
commands. That should allow to reduce some common code.

Signed-off-by: Przemo Firszt <przemo@firszt.eu>
2015-10-13 21:41:01 +02:00

60 lines
1.5 KiB
CMake
Executable File

add_subdirectory(App)
if(BUILD_GUI)
add_subdirectory(Gui)
endif(BUILD_GUI)
INSTALL(
FILES
Init.py
InitGui.py
convert2TetGen.py
ccxFrdReader.py
ccxInpWriter.py
FemTools.py
TestFem.py
FemBeamSection.py
FemBeamSection.ui
FemExample.py
FemShellThickness.py
FemShellThickness.ui
MechanicalAnalysis.py
MechanicalMaterial.py
MechanicalMaterial.ui
MechanicalAnalysis.ui
ShowDisplacement.ui
FemCommands.py
_ResultControlTaskPanel.py
_JobControlTaskPanel.py
_ViewProviderFemAnalysis.py
_FemAnalysis.py
_CommandMechanicalShowResult.py
_CommandFrequencyAnalysis.py
_CommandQuickAnalysis.py
_CommandPurgeFemResults.py
_CommandMechanicalJobControl.py
_CommandFemFromShape.py
_CommandNewMechanicalAnalysis.py
DESTINATION
Mod/Fem
)
INSTALL(
FILES
test_files/mesh_points.csv
test_files/mesh_volumes.csv
test_files/static_analysis.inp
test_files/frequency_analysis.inp
test_files/cube_frequency.inp
test_files/cube_frequency.dat
test_files/cube_frequency.frd
test_files/cube_frequency_expected_values
test_files/cube_static.inp
test_files/cube_static.dat
test_files/cube_static.frd
test_files/cube_static_expected_values
DESTINATION
Mod/Fem/test_files
)