diff options
Diffstat (limited to 'kicker/applets/naughty/CMakeLists.txt')
-rw-r--r-- | kicker/applets/naughty/CMakeLists.txt | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/kicker/applets/naughty/CMakeLists.txt b/kicker/applets/naughty/CMakeLists.txt new file mode 100644 index 000000000..6f6b9d47a --- /dev/null +++ b/kicker/applets/naughty/CMakeLists.txt @@ -0,0 +1,40 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +# FIXME seems that on freebsd is needed smth named LIB_KVM + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_SOURCE_DIR}/kicker/libkicker + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES naughtyapplet.desktop DESTINATION ${DATA_INSTALL_DIR}/kicker/applets ) +install( FILES naughty-happy.png naughty-sad.png DESTINATION ${DATA_INSTALL_DIR}/naughtyapplet/pics ) + + +##### naughty_panelapplet (module) ############## + +tde_add_kpart( naughty_panelapplet AUTOMOC + SOURCES + NaughtyProcessMonitor.cpp NaughtyConfigDialog.cpp + NaughtyApplet.cpp + LINK kickermain-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) |