Added Ship design module autotools scripts

This commit is contained in:
Jose Luis Cercós pita 2011-12-30 12:25:36 +01:00 committed by Yorik van Havre
parent 228972443b
commit 9c36be087f
5 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,30 @@
# Change data dir from default $(datadir) to actual directory
datadir = $(prefix)/Mod/Ship/Icons
data_DATA = \
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
EXTRA_DIST = \
$(data_DATA) \
CMakeLists.txt

13
src/Mod/Ship/Makefile.am Normal file
View File

@ -0,0 +1,13 @@
SUBDIRS=Icons shipCreateShip shipOutlineDraw shipUtils
# Change data dir from default ($(prefix)/share) to actual dir
datadir = $(prefix)/Mod/Ship
data_DATA = InitGui.py ShipGui.py Instance.py
EXTRA_DIST = \
$(data_DATA) \
CMakeLists.txt \
README \
ship.dox

View File

@ -0,0 +1,11 @@
# Change data dir from default $(datadir) to actual directory
datadir = $(prefix)/Mod/Ship/shipCreateShip
data_DATA = \
__init__.py \
Preview.py \
TaskPanel.py \
TaskPanel.ui
EXTRA_DIST = \
$(data_DATA) \
CMakeLists.txt

View File

@ -0,0 +1,12 @@
# Change data dir from default $(datadir) to actual directory
datadir = $(prefix)/Mod/Ship/shipOutlineDraw
data_DATA = \
__init__.py \
Plot.py \
Preview.py \
TaskPanel.py \
TaskPanel.ui
EXTRA_DIST = \
$(data_DATA) \
CMakeLists.txt

View File

@ -0,0 +1,11 @@
# Change data dir from default $(datadir) to actual directory
datadir = $(prefix)/Mod/Ship/shipUtils
data_DATA = \
__init__.py \
Math.py \
Paths.py \
Translator.py
EXTRA_DIST = \
$(data_DATA) \
CMakeLists.txt