summaryrefslogtreecommitdiffstats
path: root/kolf
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 /kolf
parentfa5d2dca53e1046fe38ac7cf0210d45ad5cc5107 (diff)
downloadtdegames-22eaaf46994712a7ea19be99d49c5ceb889470bd.tar.gz
tdegames-22eaaf46994712a7ea19be99d49c5ceb889470bd.zip
Initial cmake conversion
(cherry picked from commit c70db62d3671e524d23ac974d296eb218159b000)
Diffstat (limited to 'kolf')
-rw-r--r--kolf/CMakeLists.txt86
-rw-r--r--kolf/courses/CMakeLists.txt6
-rw-r--r--kolf/graphics/CMakeLists.txt5
-rw-r--r--kolf/objects/CMakeLists.txt1
-rw-r--r--kolf/objects/poolball/CMakeLists.txt29
-rw-r--r--kolf/objects/test/CMakeLists.txt29
-rw-r--r--kolf/pics/CMakeLists.txt4
-rw-r--r--kolf/sounds/CMakeLists.txt6
8 files changed, 166 insertions, 0 deletions
diff --git a/kolf/CMakeLists.txt b/kolf/CMakeLists.txt
new file mode 100644
index 00000000..664c64a5
--- /dev/null
+++ b/kolf/CMakeLists.txt
@@ -0,0 +1,86 @@
+#################################################
+#
+# (C) 2016 Alexander Golubev
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_subdirectory( objects )
+add_subdirectory( sounds )
+add_subdirectory( courses )
+add_subdirectory( pics )
+add_subdirectory( graphics )
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_SOURCE_DIR}/libtdegames
+ ${CMAKE_SOURCE_DIR}/libtdegames/highscore
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+ ${ARTS_LIBRARY_DIRS}
+)
+
+
+##### kolf (tdeinit) ############################
+
+tde_add_tdeinit_executable( kolf AUTOMOC
+ SOURCES main.cpp
+ LINK kolf-shared
+)
+
+
+##### kolf (shared) #############################
+
+tde_add_library( kolf SHARED AUTOMOC
+ SOURCES kolf.cpp game.cpp canvasitem.cpp ball.cpp newgame.cpp config.cpp
+ scoreboard.cpp editor.cpp pluginloader.cpp object.cpp vector.cpp
+ printdialogpage.cpp kcomboboxdialog.cpp kvolumecontrol.cpp floater.cpp
+ slope.cpp
+ VERSION 3.0.2
+ LINK tdegames-shared tdeprint-shared tdeio-shared artskde-shared
+ DESTINATION ${LIB_INSTALL_DIR}
+)
+
+
+##### headers ###################################
+
+install( FILES ball.h game.h statedb.h config.h canvasitem.h object.h
+ rtti.h vector.h floater.h slope.h
+ DESTINATION ${INCLUDE_INSTALL_DIR}/kolf
+)
+
+
+##### other data ################################
+
+add_custom_command ( OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/kolf.magic.mgc"
+ COMMAND file -C -m ${CMAKE_CURRENT_SOURCE_DIR}/kolf.magic
+ DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/kolf.magic"
+)
+
+add_custom_target( kolf-magic-mgc ALL DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/kolf.magic.mgc" )
+
+install( FILES x-kourse.desktop x-kolf.desktop
+ DESTINATION ${MIME_INSTALL_DIR}/application
+)
+
+install( FILES kolf.magic "${CMAKE_CURRENT_BINARY_DIR}/kolf.magic.mgc"
+ DESTINATION ${CONFIG_INSTALL_DIR}/magic
+)
+
+install( FILES kolf.desktop
+ DESTINATION ${XDG_APPS_INSTALL_DIR}
+)
+
+install( FILES kolfui.rc intro tutorial.kolf tutorial.kolfgame
+ DESTINATION ${DATA_INSTALL_DIR}/kolf
+)
diff --git a/kolf/courses/CMakeLists.txt b/kolf/courses/CMakeLists.txt
new file mode 100644
index 00000000..01fde2a4
--- /dev/null
+++ b/kolf/courses/CMakeLists.txt
@@ -0,0 +1,6 @@
+# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
+
+install( FILES Classic.kolf Hard.kolf Medium.kolf Easy.kolf ReallyEasy Practice
+ Impossible USApro
+ DESTINATION ${DATA_INSTALL_DIR}/kolf/courses
+)
diff --git a/kolf/graphics/CMakeLists.txt b/kolf/graphics/CMakeLists.txt
new file mode 100644
index 00000000..73b18fff
--- /dev/null
+++ b/kolf/graphics/CMakeLists.txt
@@ -0,0 +1,5 @@
+# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
+
+install( FILES cup.png grass.png puddle.png sand.png
+ DESTINATION ${DATA_INSTALL_DIR}/kolf/pics/
+)
diff --git a/kolf/objects/CMakeLists.txt b/kolf/objects/CMakeLists.txt
new file mode 100644
index 00000000..89a876b0
--- /dev/null
+++ b/kolf/objects/CMakeLists.txt
@@ -0,0 +1 @@
+# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
diff --git a/kolf/objects/poolball/CMakeLists.txt b/kolf/objects/poolball/CMakeLists.txt
new file mode 100644
index 00000000..adccbef8
--- /dev/null
+++ b/kolf/objects/poolball/CMakeLists.txt
@@ -0,0 +1,29 @@
+# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### kolfpoolball (shared) #####################
+
+tde_add_library( kolfpoolball SHARED AUTOMOC
+ SOURCES poolball.cpp
+ LINK tdeio-shared
+ DESTINATION ${LIB_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES poolball.plugin
+ DESTINATION ${DATA_INSTALL_DIR}/kolf
+)
diff --git a/kolf/objects/test/CMakeLists.txt b/kolf/objects/test/CMakeLists.txt
new file mode 100644
index 00000000..192ebd34
--- /dev/null
+++ b/kolf/objects/test/CMakeLists.txt
@@ -0,0 +1,29 @@
+# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### kolftest (shared) #########################
+
+tde_add_library( kolftest SHARED AUTOMOC
+ SOURCES test.cpp
+ LINK tdeio-shared
+ DESTINATION ${LIB_INSTALL_DIR}
+)
+
+
+##### other data ################################
+
+install( FILES test.plugin
+ DESTINATION ${DATA_INSTALL_DIR}/kolf
+)
diff --git a/kolf/pics/CMakeLists.txt b/kolf/pics/CMakeLists.txt
new file mode 100644
index 00000000..510accfe
--- /dev/null
+++ b/kolf/pics/CMakeLists.txt
@@ -0,0 +1,4 @@
+# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
+
+tde_install_icons( )
+
diff --git a/kolf/sounds/CMakeLists.txt b/kolf/sounds/CMakeLists.txt
new file mode 100644
index 00000000..a3ae4461
--- /dev/null
+++ b/kolf/sounds/CMakeLists.txt
@@ -0,0 +1,6 @@
+# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
+
+install( FILES wall.wav puddle.wav holeinone.wav holed.wav blackhole.wav
+ blackholeputin.wav blackholeeject.wav hit.wav
+ DESTINATION ${DATA_INSTALL_DIR}/kolf/sounds
+)