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
Math.py
Paths.py
Translator.py
DESTINATION
Mod/Ship/shipUtils
SET(Ship_Utils
__init__.py
Math.py
Paths.py
Translator.py
)
SOURCE_GROUP("" FILES ${Ship_Utils})
ADD_CUSTOM_TARGET(ShipUtils ALL
SOURCES ${Ship_Utils}
)
fc_copy_sources("Mod/Ship/shipUtils" "Ship/shipUtils" ${Ship_Utils})
INSTALL(
FILES
${Ship_Utils}
DESTINATION
Mod/Ship/shipUtils
)