summaryrefslogtreecommitdiffstats
path: root/kcmshell/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'kcmshell/CMakeLists.txt')
-rw-r--r--kcmshell/CMakeLists.txt45
1 files changed, 45 insertions, 0 deletions
diff --git a/kcmshell/CMakeLists.txt b/kcmshell/CMakeLists.txt
new file mode 100644
index 000000000..e9940a0fd
--- /dev/null
+++ b/kcmshell/CMakeLists.txt
@@ -0,0 +1,45 @@
+#################################################
+#
+# (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}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}/kdecore
+ ${CMAKE_SOURCE_DIR}/dcop
+ ${CMAKE_SOURCE_DIR}/kdecore
+ ${CMAKE_SOURCE_DIR}/kdeui
+ ${CMAKE_SOURCE_DIR}/kio
+ ${CMAKE_SOURCE_DIR}/kio/kio
+ ${CMAKE_SOURCE_DIR}/kutils
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### kcmshell ##################################
+
+set( target kcmshell )
+
+set( ${target}_SRCS
+ main.cpp main.skel
+)
+
+tde_add_kdeinit_executable( ${target} AUTOMOC
+ SOURCES ${${target}_SRCS}
+ LINK kutils-shared
+ DEPENDENCIES dcopidl
+)