diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-11-10 20:47:02 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-11-12 09:43:43 +0100 |
commit | 44523625f9a67a3dd6cb4cb21ee8745f68809e2d (patch) | |
tree | a817f166581827b5ab0ddcc637992452a9386631 /kdelirc | |
parent | d95dc06620843eb68f3d827612d6783d9dfc8a82 (diff) | |
download | tdeutils-44523625f9a67a3dd6cb4cb21ee8745f68809e2d.tar.gz tdeutils-44523625f9a67a3dd6cb4cb21ee8745f68809e2d.zip |
Initial conversion to cmake.
Thanks to Fat-Zer.
(cherry picked from commit c1a8ee04fbfe9851c1f788bcdcf3a5339ce1e478)
Diffstat (limited to 'kdelirc')
-rw-r--r-- | kdelirc/CMakeLists.txt | 17 | ||||
-rw-r--r-- | kdelirc/icons/CMakeLists.txt | 12 | ||||
-rw-r--r-- | kdelirc/irkick/CMakeLists.txt | 60 | ||||
-rw-r--r-- | kdelirc/irkick/icons/CMakeLists.txt | 13 | ||||
-rw-r--r-- | kdelirc/kcmlirc/CMakeLists.txt | 47 | ||||
-rw-r--r-- | kdelirc/kdelirc/CMakeLists.txt | 32 | ||||
-rw-r--r-- | kdelirc/profiles/CMakeLists.txt | 16 | ||||
-rw-r--r-- | kdelirc/remotes/CMakeLists.txt | 18 |
8 files changed, 215 insertions, 0 deletions
diff --git a/kdelirc/CMakeLists.txt b/kdelirc/CMakeLists.txt new file mode 100644 index 0000000..156165f --- /dev/null +++ b/kdelirc/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 +# +################################################# + +add_subdirectory( icons ) +add_subdirectory( irkick ) +add_subdirectory( kcmlirc ) +add_subdirectory( kdelirc ) +add_subdirectory( profiles ) +add_subdirectory( remotes ) diff --git a/kdelirc/icons/CMakeLists.txt b/kdelirc/icons/CMakeLists.txt new file mode 100644 index 0000000..567e0a6 --- /dev/null +++ b/kdelirc/icons/CMakeLists.txt @@ -0,0 +1,12 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/irkick/icons ) diff --git a/kdelirc/irkick/CMakeLists.txt b/kdelirc/irkick/CMakeLists.txt new file mode 100644 index 0000000..bf808be --- /dev/null +++ b/kdelirc/irkick/CMakeLists.txt @@ -0,0 +1,60 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( icons ) + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/kdelirc/kdelirc + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${CMAKE_BINARY_DIR}/kdelirc/kdelirc +) + + +##### irkick_common (static) #################### + +tde_add_library( irkick_common STATIC_PIC AUTOMOC + SOURCES irkick.cpp irkick.skel + irkick.stub klircclient.cpp + LINK kdeui-shared kdelirc-static +) + + +##### irkick (kdeinit) ########################## + +tde_add_kdeinit_executable( irkick AUTOMOC + SOURCES main.cpp + LINK irkick_common-static +) + + +##### icons ##################################### + +tde_install_icons( ) + + +##### other data ################################ + +install( FILES irkick.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) + +install( FILES irkick.desktop + DESTINATION ${AUTOSTART_INSTALL_DIR} +) + diff --git a/kdelirc/irkick/icons/CMakeLists.txt b/kdelirc/irkick/icons/CMakeLists.txt new file mode 100644 index 0000000..ffd9b18 --- /dev/null +++ b/kdelirc/irkick/icons/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 +# +################################################# + +tde_install_icons( DESTINATION + ${DATA_INSTALL_DIR}/irkick/icons ) diff --git a/kdelirc/kcmlirc/CMakeLists.txt b/kdelirc/kcmlirc/CMakeLists.txt new file mode 100644 index 0000000..5e6ab6a --- /dev/null +++ b/kdelirc/kcmlirc/CMakeLists.txt @@ -0,0 +1,47 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR}/kdelirc/irkick + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/kdelirc/irkick + ${CMAKE_SOURCE_DIR}/kdelirc/kdelirc + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${CMAKE_BINARY_DIR}/kdelirc/kdelirc +) + + +##### kcm_kcmlirc (kpart) ####################### + +tde_add_kpart( kcm_kcmlirc AUTOMOC + SOURCES selectprofile.ui newmode.ui + kcmlircbase.ui kcmlirc.cpp addactionbase.ui + addaction.cpp kcmlirc.skel editactionbase.ui + editmodebase.ui editmode.cpp editaction.cpp + modeslist.cpp + LINK kdelirc-static kdeui-shared kio-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### other data ################################ + +install( FILES kcmlirc.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) + diff --git a/kdelirc/kdelirc/CMakeLists.txt b/kdelirc/kdelirc/CMakeLists.txt new file mode 100644 index 0000000..cc6d737 --- /dev/null +++ b/kdelirc/kdelirc/CMakeLists.txt @@ -0,0 +1,32 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### kdelirc (static) ########################## + +tde_add_library( kdelirc STATIC_PIC + SOURCES iraction.cpp arguments.cpp + iractions.cpp prototype.cpp modes.cpp + mode.cpp profileserver.cpp remoteserver.cpp +) + diff --git a/kdelirc/profiles/CMakeLists.txt b/kdelirc/profiles/CMakeLists.txt new file mode 100644 index 0000000..c6f8828 --- /dev/null +++ b/kdelirc/profiles/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 profile.dtd noatun.profile.xml + klauncher.profile.xml konqueror.profile.xml + DESTINATION ${DATA_INSTALL_DIR}/profiles +) + diff --git a/kdelirc/remotes/CMakeLists.txt b/kdelirc/remotes/CMakeLists.txt new file mode 100644 index 0000000..d681539 --- /dev/null +++ b/kdelirc/remotes/CMakeLists.txt @@ -0,0 +1,18 @@ +################################################# +# +# (C) 2012 Golubev Alexander +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES RM-0010.remote.xml + cimr100.remote.xml sherwood.remote.xml + hauppauge.remote.xml sonytv.remote.xml + remote.dtd + DESTINATION ${DATA_INSTALL_DIR}/remotes +) + |