summaryrefslogtreecommitdiffstats
path: root/libtdegames/kgame
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:06 +0100
commitc70db62d3671e524d23ac974d296eb218159b000 (patch)
tree08d8ed5d0c7c170a7940bcbb80989b99ead98447 /libtdegames/kgame
parent133cc7035dbdcaf812d8370f729530fa60547f92 (diff)
downloadtdegames-c70db62d3671e524d23ac974d296eb218159b000.tar.gz
tdegames-c70db62d3671e524d23ac974d296eb218159b000.zip
Initial cmake conversion
Diffstat (limited to 'libtdegames/kgame')
-rw-r--r--libtdegames/kgame/CMakeLists.txt48
-rw-r--r--libtdegames/kgame/dialogs/CMakeLists.txt30
2 files changed, 78 insertions, 0 deletions
diff --git a/libtdegames/kgame/CMakeLists.txt b/libtdegames/kgame/CMakeLists.txt
new file mode 100644
index 00000000..d15f8bf7
--- /dev/null
+++ b/libtdegames/kgame/CMakeLists.txt
@@ -0,0 +1,48 @@
+#################################################
+#
+# (C) 2016 Alexander Golubev
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_subdirectory( dialogs )
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_SOURCE_DIR}/libtdegames
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### kgame (static) ############################
+
+tde_add_library( kgame STATIC_PIC AUTOMOC
+ SOURCES kgame.cpp kplayer.cpp kgamenetwork.cpp kgameproperty.cpp
+ kgamemessage.cpp kgameio.cpp kgameprocess.cpp kgamechat.cpp
+ kgamepropertyhandler.cpp kgameerror.cpp kgamesequence.cpp
+ kmessageio.cpp kmessageserver.cpp kmessageclient.cpp
+
+)
+
+
+##### headers ###################################
+
+install( FILES
+ kgame.h kplayer.h kgamenetwork.h kgameproperty.h kgamemessage.h
+ kgameio.h kgameprocess.h kgamepropertyarray.h
+ kgamepropertylist.h kgamechat.h kgamepropertyhandler.h
+ kgameerror.h kgamesequence.h kgameversion.h
+ kmessageio.h kmessageserver.h kmessageclient.h
+ DESTINATION ${INCLUDE_INSTALL_DIR}/kgame
+)
diff --git a/libtdegames/kgame/dialogs/CMakeLists.txt b/libtdegames/kgame/dialogs/CMakeLists.txt
new file mode 100644
index 00000000..17bbefd4
--- /dev/null
+++ b/libtdegames/kgame/dialogs/CMakeLists.txt
@@ -0,0 +1,30 @@
+# 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}
+ ${CMAKE_SOURCE_DIR}/libtdegames
+ ${CMAKE_SOURCE_DIR}/libtdegames/kgame
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### kgamedialogs (static) #####################
+
+tde_add_library( kgamedialogs STATIC_PIC AUTOMOC
+ SOURCES kgamedialog.cpp kgameconnectdialog.cpp kgameerrordialog.cpp
+ kgamedebugdialog.cpp kgamedialogconfig.cpp
+)
+
+
+##### headers ###################################
+install( FILES kgamedialog.h kgameconnectdialog.h kgameerrordialog.h
+ kgamedebugdialog.h kgamedialogconfig.h
+ DESTINATION ${INCLUDE_INSTALL_DIR}/kgame
+)