diff options
author | Darrell Anderson <[email protected]> | 2012-04-06 19:01:43 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-04-06 19:01:43 -0500 |
commit | 520b27baef7cd2e3a8b7b757564a9b78cd61e506 (patch) | |
tree | f9b5e700a65cde840fd2325d22bfa664efcfc2bb /kcontrol/hwmanager/CMakeLists.txt | |
parent | 5e6882c8f936caf15cc98409ecac3817bca2cb49 (diff) | |
parent | 0d6bebc5f5bacd360dcee8f58b93ae3c99028c75 (diff) | |
download | tdebase-520b27baef7cd2e3a8b7b757564a9b78cd61e506.tar.gz tdebase-520b27baef7cd2e3a8b7b757564a9b78cd61e506.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdebase
Diffstat (limited to 'kcontrol/hwmanager/CMakeLists.txt')
-rw-r--r-- | kcontrol/hwmanager/CMakeLists.txt | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/kcontrol/hwmanager/CMakeLists.txt b/kcontrol/hwmanager/CMakeLists.txt new file mode 100644 index 000000000..dc1265e49 --- /dev/null +++ b/kcontrol/hwmanager/CMakeLists.txt @@ -0,0 +1,39 @@ +################################################# +# +# (C) 2012 Timothy Pearson +# kb9vqf (AT) pearsoncomputing.net +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES hwmanager.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) + + +##### kcm_iccconfig (module) #################### + +set_source_files_properties( hwmanager.cpp PROPERTIES COMPILE_FLAGS -DKDE_CONFDIR=\\"${TDE_CONFIG_DIR}\\" ) + +tde_add_kpart( kcm_hwmanager AUTOMOC + SOURCES + hwmanager.cpp deviceiconview.cpp devicepropsdlg.cpp hwmanagerbase.ui hwmanager.skel + LINK kio-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) |