Fixed errors using CMAKE compile tools

This commit is contained in:
Jose Luis Cercós Pita
2012-01-02 15:50:37 +01:00
committed by Yorik van Havre
parent e1c38be266
commit 6d5943dc6e
10 changed files with 237 additions and 99 deletions

View File

@@ -1,10 +1,22 @@
INSTALL(
FILES
__init__.py
Preview.py
TaskPanel.py
TaskPanel.ui
DESTINATION
Mod/Ship/shipCreateShip
SET(Ship_CreateShip
__init__.py
Preview.py
TaskPanel.py
TaskPanel.ui
)
SOURCE_GROUP("" FILES ${Ship_CreateShip})
ADD_CUSTOM_TARGET(ShipCreateShip ALL
SOURCES ${Ship_CreateShip}
)
fc_copy_sources("Mod/Ship/shipCreateShip" "Ship/shipCreateShip" ${Ship_CreateShip})
INSTALL(
FILES
${Ship_CreateShip}
DESTINATION
Mod/Ship/shipCreateShip
)