diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-04-27 22:18:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-04-27 22:18:38 +0900 |
commit | afd698aa6058379c021ff7062465eee7da714101 (patch) | |
tree | 8444dac5cf92351c4edad5c50778ea0d0979d235 /kasteroids | |
parent | f1f09914546b311028592dfb83db4e33d205dac6 (diff) | |
download | tdegames-afd698aa6058379c021ff7062465eee7da714101.tar.gz tdegames-afd698aa6058379c021ff7062465eee7da714101.zip |
Rearrangement of libtdegames highscore headers.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kasteroids')
-rw-r--r-- | kasteroids/CMakeLists.txt | 1 | ||||
-rw-r--r-- | kasteroids/Makefile.am | 2 | ||||
-rw-r--r-- | kasteroids/toplevel.cpp | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/kasteroids/CMakeLists.txt b/kasteroids/CMakeLists.txt index ecdbdbb5..b28f564d 100644 --- a/kasteroids/CMakeLists.txt +++ b/kasteroids/CMakeLists.txt @@ -8,7 +8,6 @@ include_directories( ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/libtdegames - ${CMAKE_SOURCE_DIR}/libtdegames/highscore ${TDE_INCLUDE_DIR} ${TQT_INCLUDE_DIRS} ) diff --git a/kasteroids/Makefile.am b/kasteroids/Makefile.am index e8b441ff..dc7a8492 100644 --- a/kasteroids/Makefile.am +++ b/kasteroids/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = . sprites sounds -INCLUDES = -I$(top_srcdir)/libtdegames -I$(top_srcdir)/libtdegames/highscore $(all_includes) +INCLUDES = -I$(top_srcdir)/libtdegames $(all_includes) METASOURCES = AUTO bin_PROGRAMS = kasteroids diff --git a/kasteroids/toplevel.cpp b/kasteroids/toplevel.cpp index 6947365a..303219d7 100644 --- a/kasteroids/toplevel.cpp +++ b/kasteroids/toplevel.cpp @@ -20,7 +20,7 @@ #include <tdeaction.h> #include <kstdgameaction.h> #include <kaudioplayer.h> -#include <kscoredialog.h> +#include <highscore/kscoredialog.h> #include <tdeconfigdialog.h> #include "settings.h" |