summaryrefslogtreecommitdiffstats
path: root/ksnapshot
diff options
context:
space:
mode:
authorsamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-11 21:29:40 +0000
committersamelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-11 21:29:40 +0000
commit6ea9a88f68a7abfa6338187f9030e74a296c5572 (patch)
tree898b6f8501569cee2997885bf4b5c840fb388fe4 /ksnapshot
parent9c8150b75ff42d23cefed07e1a07bb3c06ec9850 (diff)
downloadtdegraphics-6ea9a88f68a7abfa6338187f9030e74a296c5572.tar.gz
tdegraphics-6ea9a88f68a7abfa6338187f9030e74a296c5572.zip
[kdegraphics] added cmake support for kuickshow and ksnapshot
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1231437 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksnapshot')
-rw-r--r--ksnapshot/CMakeLists.txt45
-rw-r--r--ksnapshot/ConfigureChecks.cmake12
2 files changed, 57 insertions, 0 deletions
diff --git a/ksnapshot/CMakeLists.txt b/ksnapshot/CMakeLists.txt
new file mode 100644
index 00000000..b5d5fd3e
--- /dev/null
+++ b/ksnapshot/CMakeLists.txt
@@ -0,0 +1,45 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include( ConfigureChecks.cmake )
+
+add_definitions(
+ -DKSNAPVERSION="0.7"
+)
+
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_BINARY_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### other data ################################
+
+tde_install_icons( ksnapshot )
+install( FILES ksnapshot.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
+
+
+##### ksnapshot (executable) ####################
+
+tde_add_executable( ksnapshot AUTOMOC
+ SOURCES
+ ksnapshotiface.skel main.cpp ksnapshot.cpp regiongrabber.cpp
+ windowgrabber.cpp ksnapshotwidget.ui
+ LINK kdeprint-shared
+ DESTINATION ${BIN_INSTALL_DIR}
+)
diff --git a/ksnapshot/ConfigureChecks.cmake b/ksnapshot/ConfigureChecks.cmake
new file mode 100644
index 00000000..d9a7dd4a
--- /dev/null
+++ b/ksnapshot/ConfigureChecks.cmake
@@ -0,0 +1,12 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+check_include_file( X11/extensions/shape.h HAVE_X11_EXTENSIONS_SHAPE_H )