From c4c9c9fd262dd8450c1cf4454183b03173a3b092 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 18 Nov 2012 15:33:48 +0100 Subject: Initial conversion to cmake Thanks to Fat-Zer --- kworldwatch/CMakeLists.txt | 78 +++++++++++++++++++++++++++++++ kworldwatch/maps/CMakeLists.txt | 13 ++++++ kworldwatch/maps/depths/CMakeLists.txt | 16 +++++++ kworldwatch/maps/flatworld/CMakeLists.txt | 17 +++++++ kworldwatch/mapwidget.cpp | 3 ++ kworldwatch/pics/CMakeLists.txt | 17 +++++++ kworldwatch/zoneclock.cpp | 3 ++ 7 files changed, 147 insertions(+) create mode 100644 kworldwatch/CMakeLists.txt create mode 100644 kworldwatch/maps/CMakeLists.txt create mode 100644 kworldwatch/maps/depths/CMakeLists.txt create mode 100644 kworldwatch/maps/flatworld/CMakeLists.txt create mode 100644 kworldwatch/pics/CMakeLists.txt (limited to 'kworldwatch') 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 #include 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 #include -- cgit v1.2.3