summaryrefslogtreecommitdiffstats
path: root/kspy
diff options
context:
space:
mode:
Diffstat (limited to 'kspy')
-rw-r--r--kspy/CMakeLists.txt40
1 files changed, 40 insertions, 0 deletions
diff --git a/kspy/CMakeLists.txt b/kspy/CMakeLists.txt
new file mode 100644
index 00000000..2dee53ae
--- /dev/null
+++ b/kspy/CMakeLists.txt
@@ -0,0 +1,40 @@
+#################################################
+#
+# (C) 2012 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### headers ###################################
+
+install( FILES
+ kspy.h
+ DESTINATION ${INCLUDE_INSTALL_DIR} )
+
+
+##### kspy (shared) #############################
+
+tde_add_library( kspy SHARED AUTOMOC
+ SOURCES
+ navviewitem.cpp propsview.cpp navview.cpp spy.cpp sigslotview.cpp
+ receiversview.cpp classinfoview.cpp
+ VERSION 1.2.0
+ LINK tdeui-shared
+ DESTINATION ${LIB_INSTALL_DIR}
+)