summaryrefslogtreecommitdiffstats
path: root/arts/knotify/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'arts/knotify/CMakeLists.txt')
-rw-r--r--arts/knotify/CMakeLists.txt56
1 files changed, 56 insertions, 0 deletions
diff --git a/arts/knotify/CMakeLists.txt b/arts/knotify/CMakeLists.txt
new file mode 100644
index 000000000..01d3d41fe
--- /dev/null
+++ b/arts/knotify/CMakeLists.txt
@@ -0,0 +1,56 @@
+#################################################
+#
+# (C) 2010 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_definitions(
+ ${TQT_CFLAGS_OTHER}
+)
+
+include_directories(
+ ${TQT_INCLUDE_DIRS}
+ ${ARTS_INCLUDE_DIRS}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}/kdecore
+ ${CMAKE_SOURCE_DIR}/arts/kde
+ ${CMAKE_SOURCE_DIR}/dcop
+ ${CMAKE_SOURCE_DIR}/kdecore
+ ${CMAKE_SOURCE_DIR}/kdeui
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+ ${ARTS_LIBRARY_DIRS}
+)
+
+
+##### other data ################################
+
+install( FILES knotify.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
+
+
+##### knotify ###################################
+
+set( target knotify )
+
+set( ${target}_SRCS
+ knotify.cpp knotify.skel
+)
+
+if( ARTS_FOUND )
+ set( LIBS artskde-shared )
+endif( ARTS_FOUND )
+
+tde_add_kpart( ${target} AUTOMOC
+ SOURCES ${${target}_SRCS}
+ LINK ${LIBS}
+ DEPENDENCIES dcopidl
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)