summaryrefslogtreecommitdiffstats
path: root/kbackgammon
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2020-03-30 02:53:52 +0300
committerTDE Gitea <gitea@mirror.git.trinitydesktop.org>2020-04-27 09:08:45 +0000
commita94a863f93fe5d45f5f6d4fa732eb297d6a154f7 (patch)
tree244a3fd8d91239739661b976952766f201d9752a /kbackgammon
parent68330184402c08aa9ac25243be7c790a09b453f8 (diff)
downloadtdegames-a94a863f93fe5d45f5f6d4fa732eb297d6a154f7.tar.gz
tdegames-a94a863f93fe5d45f5f6d4fa732eb297d6a154f7.zip
Small rearrangement of libtdegames headers
Move kgame dialog headers to a dedicated subdir to make installed includes match source code layout. This will make linking of games to an installed instance of libtdegames library more straightforward. Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
Diffstat (limited to 'kbackgammon')
-rw-r--r--kbackgammon/CMakeLists.txt1
-rw-r--r--kbackgammon/engines/nextgen/kbggame.h2
-rw-r--r--kbackgammon/engines/nextgen/kbgng.h2
-rw-r--r--kbackgammon/engines/nextgen/kbgplayer.h2
4 files changed, 3 insertions, 4 deletions
diff --git a/kbackgammon/CMakeLists.txt b/kbackgammon/CMakeLists.txt
index 432239ef..9d6eaef3 100644
--- a/kbackgammon/CMakeLists.txt
+++ b/kbackgammon/CMakeLists.txt
@@ -19,7 +19,6 @@ include_directories(
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/libtdegames
- ${CMAKE_SOURCE_DIR}/libtdegames/kgame/
${CMAKE_CURRENT_SOURCE_DIR}/engines
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
diff --git a/kbackgammon/engines/nextgen/kbggame.h b/kbackgammon/engines/nextgen/kbggame.h
index 9d81531e..bfbf2a06 100644
--- a/kbackgammon/engines/nextgen/kbggame.h
+++ b/kbackgammon/engines/nextgen/kbggame.h
@@ -28,7 +28,7 @@
#include <config.h>
#endif
-#include <kgame.h>
+#include <kgame/kgame.h>
#include <kdemacros.h>
class TQObject;
class KPlayer;
diff --git a/kbackgammon/engines/nextgen/kbgng.h b/kbackgammon/engines/nextgen/kbgng.h
index 8fb2f8b5..b936f377 100644
--- a/kbackgammon/engines/nextgen/kbgng.h
+++ b/kbackgammon/engines/nextgen/kbgng.h
@@ -33,7 +33,7 @@
#include <tqspinbox.h>
#include <tdeaction.h>
#include <tqdatastream.h>
-#include <kgameproperty.h>
+#include <kgame/kgameproperty.h>
#include <generic/kbgengine.h>
diff --git a/kbackgammon/engines/nextgen/kbgplayer.h b/kbackgammon/engines/nextgen/kbgplayer.h
index b59cad8a..9256db6b 100644
--- a/kbackgammon/engines/nextgen/kbgplayer.h
+++ b/kbackgammon/engines/nextgen/kbgplayer.h
@@ -28,7 +28,7 @@
#include <config.h>
#endif
-#include <kplayer.h>
+#include <kgame/kplayer.h>
#include <tqdatastream.h>
class KGame;