diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2012-11-18 15:33:48 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-11-18 15:33:48 +0100 |
commit | c4c9c9fd262dd8450c1cf4454183b03173a3b092 (patch) | |
tree | e03d0b806ab851d79324ac05bc6fe06cdfe1fc0d /ktux | |
parent | 75bf0c9d253aee7281a0d0d7e9f899d75a1bd04b (diff) | |
download | tdetoys-c4c9c9fd262dd8450c1cf4454183b03173a3b092.tar.gz tdetoys-c4c9c9fd262dd8450c1cf4454183b03173a3b092.zip |
Initial conversion to cmake
Thanks to Fat-Zer
Diffstat (limited to 'ktux')
-rw-r--r-- | ktux/CMakeLists.txt | 48 | ||||
-rw-r--r-- | ktux/sprites/CMakeLists.txt | 20 |
2 files changed, 68 insertions, 0 deletions
diff --git a/ktux/CMakeLists.txt b/ktux/CMakeLists.txt new file mode 100644 index 0000000..384c8d5 --- /dev/null +++ b/ktux/CMakeLists.txt @@ -0,0 +1,48 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( sprites ) + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### ktux (executable) ######################### + +tde_add_executable( ktux AUTOMOC + SOURCES spriteanim.cpp spritemisc.cpp + spritepm.cpp sprite.cpp + LINK kio-shared kscreensaver-shared + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### icons ##################################### + +tde_install_icons( ktux ) + + +##### other data ################################ + +install( FILES ktux.desktop + DESTINATION + ${APPS_INSTALL_DIR}/System/ScreenSavers +) + diff --git a/ktux/sprites/CMakeLists.txt b/ktux/sprites/CMakeLists.txt new file mode 100644 index 0000000..eb878ee --- /dev/null +++ b/ktux/sprites/CMakeLists.txt @@ -0,0 +1,20 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES anim0001.png anim0002.png + anim0003.png anim0004.png anim0005.png + anim0006.png anim0007.png anim0008.png + anim0009.png anim0010.png bg.png flare0001.png + flare0002.png spriterc star0001.png + star0002.png + DESTINATION ${DATA_INSTALL_DIR}/ktux/sprites +) + |