diff options
Diffstat (limited to 'libtdegames')
-rw-r--r-- | libtdegames/CMakeLists.txt | 56 | ||||
-rw-r--r-- | libtdegames/carddecks/CMakeLists.txt | 17 | ||||
-rw-r--r-- | libtdegames/highscore/CMakeLists.txt | 40 | ||||
-rw-r--r-- | libtdegames/kgame/CMakeLists.txt | 48 | ||||
-rw-r--r-- | libtdegames/kgame/dialogs/CMakeLists.txt | 30 | ||||
-rw-r--r-- | libtdegames/pics/CMakeLists.txt | 9 |
6 files changed, 200 insertions, 0 deletions
diff --git a/libtdegames/CMakeLists.txt b/libtdegames/CMakeLists.txt new file mode 100644 index 00000000..5e79dc39 --- /dev/null +++ b/libtdegames/CMakeLists.txt @@ -0,0 +1,56 @@ +################################################# +# +# (C) 2016 Alexander Golubev +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +project( libtdegames ) + +add_subdirectory( carddecks ) +add_subdirectory( highscore ) +add_subdirectory( kgame ) +add_subdirectory( pics ) + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### tdegames (shared) ######################### + +tde_add_library( tdegames SHARED AUTOMOC + SOURCES kcarddialog.cpp kstdgameaction.cpp kgamemisc.cpp kchatbase.cpp + kchat.cpp kchatdialog.cpp kgameprogress.cpp kcanvasrootpixmap.cpp + kgamelcd.cpp + VERSION 3.0.2 + EMBED khighscore-static kgame-static kgamedialogs-static + LINK tdecore-shared tdeui-shared tdednssd-shared tdeio-shared + DESTINATION ${LIB_INSTALL_DIR} +) + + +##### headers ################################### + +install( FILES + kgamemisc.h kcarddialog.h kstdgameaction.h kchatbase.h kchat.h + kchatdialog.h kgameprogress.h kcanvasrootpixmap.h kgamelcd.h kgrid2d.h + DESTINATION ${INCLUDE_INSTALL_DIR} +) + + +##### install import cmake modules ############### + +tde_install_export( ) diff --git a/libtdegames/carddecks/CMakeLists.txt b/libtdegames/carddecks/CMakeLists.txt new file mode 100644 index 00000000..102d0391 --- /dev/null +++ b/libtdegames/carddecks/CMakeLists.txt @@ -0,0 +1,17 @@ +################################################# +# +# (C) 2016 Alexander Golubev +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( DIRECTORY cards-aisleriot cards-dondorf-whist-b + cards-gdkcard-bonded cards-hard-a-port cards-penguins + cards-spaced cards-xskat-french cards-default decks + cards-konqi-modern cards-warwick cards-xskat-german + DESTINATION ${DATA_INSTALL_DIR}/carddecks +) diff --git a/libtdegames/highscore/CMakeLists.txt b/libtdegames/highscore/CMakeLists.txt new file mode 100644 index 00000000..bc2a0ce4 --- /dev/null +++ b/libtdegames/highscore/CMakeLists.txt @@ -0,0 +1,40 @@ +################################################# +# +# (C) 2016 Alexander Golubev +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### khighscore (static) ####################### + +tde_add_library( khighscore STATIC_PIC AUTOMOC + SOURCES tdeconfigrawbackend.cpp tdefilelock.cpp khighscore.cpp + kscoredialog.cpp kexthighscore_item.cpp kexthighscore_internal.cpp + kexthighscore_tab.cpp kexthighscore_gui.cpp kexthighscore.cpp +) + + +##### headers ################################### + +install( FILES khighscore.h kscoredialog.h kexthighscore_item.h + kexthighscore.h + DESTINATION ${INCLUDE_INSTALL_DIR} +) 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 +) diff --git a/libtdegames/pics/CMakeLists.txt b/libtdegames/pics/CMakeLists.txt new file mode 100644 index 00000000..45e7c022 --- /dev/null +++ b/libtdegames/pics/CMakeLists.txt @@ -0,0 +1,9 @@ +# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer + +tde_install_icons( action-roll action-highscore action-endturn ) + + +##### other data ################################ +install( FILES star.png + DESTINATION ${DATA_INSTALL_DIR}/tdegames/pics +) |