summaryrefslogtreecommitdiffstats
path: root/ksnake/data
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2016-02-25 06:23:55 +0300
committerSlávek Banko <slavek.banko@axis.cz>2016-03-14 23:04:46 +0100
commit22eaaf46994712a7ea19be99d49c5ceb889470bd (patch)
tree6813293435ece498f1d90a99adfa5e9a49c875fe /ksnake/data
parentfa5d2dca53e1046fe38ac7cf0210d45ad5cc5107 (diff)
downloadtdegames-22eaaf46994712a7ea19be99d49c5ceb889470bd.tar.gz
tdegames-22eaaf46994712a7ea19be99d49c5ceb889470bd.zip
Initial cmake conversion
(cherry picked from commit c70db62d3671e524d23ac974d296eb218159b000)
Diffstat (limited to 'ksnake/data')
-rw-r--r--ksnake/data/CMakeLists.txt11
-rw-r--r--ksnake/data/backgrounds/CMakeLists.txt6
-rw-r--r--ksnake/data/levels/CMakeLists.txt7
-rw-r--r--ksnake/data/pixmaps/CMakeLists.txt5
4 files changed, 29 insertions, 0 deletions
diff --git a/ksnake/data/CMakeLists.txt b/ksnake/data/CMakeLists.txt
new file mode 100644
index 00000000..aa454a71
--- /dev/null
+++ b/ksnake/data/CMakeLists.txt
@@ -0,0 +1,11 @@
+# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
+
+add_subdirectory( levels )
+add_subdirectory( pixmaps )
+add_subdirectory( backgrounds )
+
+##### other data ################################
+
+install( FILES highScores
+ DESTINATION ${DATA_INSTALL_DIR}/ksnake
+)
diff --git a/ksnake/data/backgrounds/CMakeLists.txt b/ksnake/data/backgrounds/CMakeLists.txt
new file mode 100644
index 00000000..11982a26
--- /dev/null
+++ b/ksnake/data/backgrounds/CMakeLists.txt
@@ -0,0 +1,6 @@
+# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
+
+install( FILES Bark.png Blue_Carpet.png Dark_Wood.png Granite.png
+ Green_Carpet.png Mystique.png Rope_Weave.png Volcanic.png Wood.png
+ DESTINATION ${DATA_INSTALL_DIR}/ksnake/backgrounds
+)
diff --git a/ksnake/data/levels/CMakeLists.txt b/ksnake/data/levels/CMakeLists.txt
new file mode 100644
index 00000000..5bc8da0c
--- /dev/null
+++ b/ksnake/data/levels/CMakeLists.txt
@@ -0,0 +1,7 @@
+# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
+
+install( FILES room01 room02 room03 room04 room05 room06 room07 room08 room09
+ room10 room11 room12 room13 room14 room15 room16 room17 room18 room19 room20
+ room21 room22 room23 room24 room25
+ DESTINATION ${DATA_INSTALL_DIR}/ksnake/levels
+)
diff --git a/ksnake/data/pixmaps/CMakeLists.txt b/ksnake/data/pixmaps/CMakeLists.txt
new file mode 100644
index 00000000..4f0a3e59
--- /dev/null
+++ b/ksnake/data/pixmaps/CMakeLists.txt
@@ -0,0 +1,5 @@
+# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
+
+install( FILES apples.png ball.png brick.png snake1.png snake2.png
+ DESTINATION ${DATA_INSTALL_DIR}/ksnake/pics
+)