From 4363d85c8ce471e5fca1895cade4b060c755b9ff Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Thu, 1 May 2014 14:58:09 +0200 Subject: [PATCH] install action icons locally move the action icons to an own subdirectory so they can have a proper kde4_install_icons cmake call to install them in the data directory of kmag --- CMakeLists.txt | 1 + pics/CMakeLists.txt | 1 + .../hi16-action-followmouse.png | Bin .../hi16-action-hidemouse.png | Bin .../hi16-action-window.png | Bin 5 files changed, 2 insertions(+) create mode 100644 pics/CMakeLists.txt rename hi16-action-followmouse.png => pics/hi16-action-followmouse.png (100%) rename hi16-action-hidemouse.png => pics/hi16-action-hidemouse.png (100%) rename hi16-action-window.png => pics/hi16-action-window.png (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index edae430..ebbe146 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,6 +22,7 @@ if(QAccessibilityClient_FOUND) endif(QAccessibilityClient_FOUND) add_subdirectory( doc ) +add_subdirectory( pics ) ########### next target ############### set(kmag_SRCS diff --git a/pics/CMakeLists.txt b/pics/CMakeLists.txt new file mode 100644 index 0000000..0bd070f --- /dev/null +++ b/pics/CMakeLists.txt @@ -0,0 +1 @@ +kde4_install_icons(${DATA_INSTALL_DIR}/kmag/icons) diff --git a/hi16-action-followmouse.png b/pics/hi16-action-followmouse.png similarity index 100% rename from hi16-action-followmouse.png rename to pics/hi16-action-followmouse.png diff --git a/hi16-action-hidemouse.png b/pics/hi16-action-hidemouse.png similarity index 100% rename from hi16-action-hidemouse.png rename to pics/hi16-action-hidemouse.png diff --git a/hi16-action-window.png b/pics/hi16-action-window.png similarity index 100% rename from hi16-action-window.png rename to pics/hi16-action-window.png