Regenerated branch

This commit is contained in:
Jose Luis Cercós Pita
2013-05-20 09:08:43 -04:00
parent 2b8f106952
commit 8f49d9519f
51 changed files with 7305 additions and 401 deletions

View File

@@ -21,6 +21,14 @@ SET(ShipExamples_SRCS
)
SOURCE_GROUP("shipexamples" FILES ${ShipExamples_SRCS})
SET(ShipOpenCL_SRCS
resources/opencl/matrixGen.cl
resources/opencl/jacobi.cl
resources/opencl/minres.cl
resources/opencl/lsqr.cl
)
SOURCE_GROUP("shipopencl" FILES ${ShipOpenCL_SRCS})
SET(ShipLoadExample_SRCS
shipLoadExample/__init__.py
shipLoadExample/TaskPanel.py
@@ -107,12 +115,18 @@ SET(SimRun_SRCS
simRun/TaskPanel.ui
simRun/clSim/__init__.py
simRun/clSim/initialization.py
simRun/clSim/Utils.py
simRun/clSim/matrixGen.py
simRun/clSim/BEMsolver.py
simRun/clSim/evolution.py
simRun/clSim/clUtils.py
simRun/clSim/bem_jacobi_cl.py
simRun/clSim/bem_minres_cl.py
simRun/clSim/bem_lsqr_cl.py
simRun/Sim/__init__.py
simRun/Sim/initialization.py
simRun/Sim/matrixGen.py
simRun/Sim/computeSources.py
simRun/Sim/fsEvolution.py
simRun/Sim/BEMsolver.py
simRun/Sim/evolution.py
)
SOURCE_GROUP("simrun" FILES ${SimRun_SRCS})
@@ -123,7 +137,7 @@ SET(SimPost_SRCS
)
SOURCE_GROUP("simpost" FILES ${SimPost_SRCS})
SET(all_files ${ShipMain_SRCS} ${ShipIcons_SRCS} ${ShipExamples_SRCS} ${ShipLoadExample_SRCS} ${ShipCreateShip_SRCS} ${ShipOutlineDraw_SRCS} ${ShipAreasCurve_SRCS} ${ShipHydrostatics_SRCS} ${ShipUtils_SRCS} ${ShipWeights_SRCS} ${ShipCreateTank_SRCS} ${ShipGZ_SRCS} ${SimCreate_SRCS} ${SimRun_SRCS} ${SimPost_SRCS})
SET(all_files ${ShipMain_SRCS} ${ShipIcons_SRCS} ${ShipExamples_SRCS} ${ShipOpenCL_SRCS} ${ShipLoadExample_SRCS} ${ShipCreateShip_SRCS} ${ShipOutlineDraw_SRCS} ${ShipAreasCurve_SRCS} ${ShipHydrostatics_SRCS} ${ShipUtils_SRCS} ${ShipWeights_SRCS} ${ShipCreateTank_SRCS} ${ShipGZ_SRCS} ${SimCreate_SRCS} ${SimRun_SRCS} ${SimPost_SRCS})
ADD_CUSTOM_TARGET(Ship ALL
SOURCES ${all_files}
@@ -143,6 +157,12 @@ INSTALL(
DESTINATION
Mod/Ship/resources/examples
)
INSTALL(
FILES
${ShipOpenCL_SRCS}
DESTINATION
Mod/Ship/resources/opencl
)
INSTALL(
FILES
${ShipLoadExample_SRCS}