Added Ship design module cmake files

This commit is contained in:
Jose Luis Cercós pita 2011-12-30 11:45:39 +01:00 committed by Yorik van Havre
parent 4a937e04f8
commit 42c467533b
5 changed files with 93 additions and 0 deletions

View File

@ -0,0 +1,33 @@
add_subdirectory(Icons)
add_subdirectory(shipCreateShip)
add_subdirectory(shipOutlineDraw)
add_subdirectory(shipUtils)
SET(Ship_SRCS
InitGui.py
ShipGui.py
Instance.py
)
SOURCE_GROUP("" FILES ${Ship_SRCS})
SET(all_files ${Ship_SRCS})
ADD_CUSTOM_TARGET(Ship ALL
SOURCES ${all_files}
)
fc_copy_sources("Mod/Ship" "Ship" ${all_files})
INSTALL(
FILES
${Ship_SRCS}
README
DESTINATION
Mod/Ship
)

View File

@ -0,0 +1,29 @@
INSTALL(
FILES
AreaCurveIco.png
AreaCurveIco.xcf
AreaCurveIco.xpm
DataIco.png
DataIco.xcf
DataIco.xpm
DiscretizeIco.png
DiscretizeIco.xcf
DiscretizeIco.xpm
HydrostaticsIco.png
HydrostaticsIco.xcf
HydrostaticsIco.xpm
Ico.png
Ico.xcf
Ico.xpm
OutlineDrawIco.png
OutlineDrawIco.xcf
OutlineDrawIco.xpm
ReparametrizeIco.png
ReparametrizeIco.xcf
ReparametrizeIco.xpm
Ship.xcf
Ship.xpm
DESTINATION
Mod/Ship/Icons
)

View File

@ -0,0 +1,10 @@
INSTALL(
FILES
__init__.py
Preview.py
TaskPanel.py
TaskPanel.ui
DESTINATION
Mod/Ship/shipCreateShip
)

View File

@ -0,0 +1,11 @@
INSTALL(
FILES
__init__.py
Plot.py
Preview.py
TaskPanel.py
TaskPanel.ui
DESTINATION
Mod/Ship/shipOutlineDraw
)

View File

@ -0,0 +1,10 @@
INSTALL(
FILES
__init__.py
Math.py
Paths.py
Translator.py
DESTINATION
Mod/Ship/shipUtils
)