summaryrefslogtreecommitdiffstats
path: root/kworldwatch
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2012-11-18 15:33:48 +0100
committerSlávek Banko <slavek.banko@axis.cz>2012-11-18 15:33:48 +0100
commitc4c9c9fd262dd8450c1cf4454183b03173a3b092 (patch)
treee03d0b806ab851d79324ac05bc6fe06cdfe1fc0d /kworldwatch
parent75bf0c9d253aee7281a0d0d7e9f899d75a1bd04b (diff)
downloadtdetoys-c4c9c9fd262dd8450c1cf4454183b03173a3b092.tar.gz
tdetoys-c4c9c9fd262dd8450c1cf4454183b03173a3b092.zip
Initial conversion to cmake
Thanks to Fat-Zer
Diffstat (limited to 'kworldwatch')
-rw-r--r--kworldwatch/CMakeLists.txt78
-rw-r--r--kworldwatch/maps/CMakeLists.txt13
-rw-r--r--kworldwatch/maps/depths/CMakeLists.txt16
-rw-r--r--kworldwatch/maps/flatworld/CMakeLists.txt17
-rw-r--r--kworldwatch/mapwidget.cpp3
-rw-r--r--kworldwatch/pics/CMakeLists.txt17
-rw-r--r--kworldwatch/zoneclock.cpp3
7 files changed, 147 insertions, 0 deletions
diff --git a/kworldwatch/CMakeLists.txt b/kworldwatch/CMakeLists.txt
new file mode 100644
index 0000000..f8d4700
--- /dev/null
+++ b/kworldwatch/CMakeLists.txt
@@ -0,0 +1,78 @@
+#################################################
+#
+# (C) 2012 Golubev Alexander
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_subdirectory( maps )
+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}
+)
+
+
+##### ww (static) ###############################
+
+tde_add_library( ww STATIC_PIC AUTOMOC
+ SOURCES maploader.cpp mapwidget.cpp astro.c
+ sunclock.c about.ui cities.cpp zoneclock.cpp
+ flags.cpp flow.cpp clock.ui
+)
+
+
+##### kworldclock (executable) ##################
+
+tde_add_executable( kworldclock AUTOMOC
+ SOURCES main.cpp
+ LINK kio-shared ww-static
+ DESTINATION ${BIN_INSTALL_DIR}
+)
+
+
+##### ww_panelapplet (kpart) ####################
+
+tde_add_kpart( ww_panelapplet AUTOMOC
+ SOURCES applet.cpp
+ LINK kio-shared ww-static
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### icons #####################################
+
+tde_install_icons( kworldclock )
+
+
+##### other data ################################
+
+install( FILES kworldclock.desktop
+ DESTINATION ${XDG_APPS_INSTALL_DIR}
+)
+
+install( FILES kdeworld.desktop
+ DESTINATION
+ ${DATA_INSTALL_DIR}/kdesktop/programs
+)
+
+install( FILES zone.tab
+ DESTINATION ${DATA_INSTALL_DIR}/kworldclock
+)
+
+install( FILES kwwapplet.desktop
+ DESTINATION ${DATA_INSTALL_DIR}/kicker/applets
+)
+
diff --git a/kworldwatch/maps/CMakeLists.txt b/kworldwatch/maps/CMakeLists.txt
new file mode 100644
index 0000000..6fcf3ba
--- /dev/null
+++ b/kworldwatch/maps/CMakeLists.txt
@@ -0,0 +1,13 @@
+#################################################
+#
+# (C) 2012 Golubev Alexander
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_subdirectory( depths )
+add_subdirectory( flatworld )
diff --git a/kworldwatch/maps/depths/CMakeLists.txt b/kworldwatch/maps/depths/CMakeLists.txt
new file mode 100644
index 0000000..44405bc
--- /dev/null
+++ b/kworldwatch/maps/depths/CMakeLists.txt
@@ -0,0 +1,16 @@
+#################################################
+#
+# (C) 2012 Golubev Alexander
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+install( FILES depths.desktop 400.jpg 800.jpg
+ DESTINATION
+ ${DATA_INSTALL_DIR}/kworldclock/maps/depths
+)
+
diff --git a/kworldwatch/maps/flatworld/CMakeLists.txt b/kworldwatch/maps/flatworld/CMakeLists.txt
new file mode 100644
index 0000000..25085a9
--- /dev/null
+++ b/kworldwatch/maps/flatworld/CMakeLists.txt
@@ -0,0 +1,17 @@
+#################################################
+#
+# (C) 2012 Golubev Alexander
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+install( FILES flatworld.desktop 200.jpg 400.jpg
+ 800.jpg 1200.jpg 1600.jpg
+ DESTINATION
+ ${DATA_INSTALL_DIR}/kworldclock/maps/flatworld
+)
+
diff --git a/kworldwatch/mapwidget.cpp b/kworldwatch/mapwidget.cpp
index 93bca75..75141b3 100644
--- a/kworldwatch/mapwidget.cpp
+++ b/kworldwatch/mapwidget.cpp
@@ -25,7 +25,10 @@
/*
** Bug reports and questions can be sent to kde-devel@kde.org
*/
+
+#ifdef HAVE_CONFIG_H
#include "config.h"
+#endif // HAVE_CONFIG_H
#include <time.h>
#include <stdlib.h>
diff --git a/kworldwatch/pics/CMakeLists.txt b/kworldwatch/pics/CMakeLists.txt
new file mode 100644
index 0000000..8400c1f
--- /dev/null
+++ b/kworldwatch/pics/CMakeLists.txt
@@ -0,0 +1,17 @@
+#################################################
+#
+# (C) 2012 Golubev Alexander
+# fatzer2 (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+install( FILES flag.png flag-mask.xpm
+ flag-red.png flag-blue.png flag-green.png
+ DESTINATION
+ ${DATA_INSTALL_DIR}/kworldclock/pics
+)
+
diff --git a/kworldwatch/zoneclock.cpp b/kworldwatch/zoneclock.cpp
index 5e50100..5a60394 100644
--- a/kworldwatch/zoneclock.cpp
+++ b/kworldwatch/zoneclock.cpp
@@ -25,7 +25,10 @@
/*
** Bug reports and questions can be sent to kde-devel@kde.org
*/
+
+#ifdef HAVE_CONFIG_H
#include "config.h"
+#endif // HAVE_CONFIG_H
#include <stdlib.h>
#include <time.h>