From 41f6d5afec703320378e38c0bcefb064d42337e4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 5 Mar 2024 19:43:11 +0900 Subject: Conversion to cmake building system Signed-off-by: Michele Calgaro (cherry picked from commit bc9bda10c93ebfb9862270576b445d1c2798d66d) --- icons/CMakeLists.txt | 4 ++++ icons/action/CMakeLists.txt | 1 + icons/app/CMakeLists.txt | 1 + icons/cursor/CMakeLists.txt | 4 ++++ icons/thumbnail/CMakeLists.txt | 4 ++++ 5 files changed, 14 insertions(+) create mode 100644 icons/CMakeLists.txt create mode 100644 icons/action/CMakeLists.txt create mode 100644 icons/app/CMakeLists.txt create mode 100644 icons/cursor/CMakeLists.txt create mode 100644 icons/thumbnail/CMakeLists.txt (limited to 'icons') diff --git a/icons/CMakeLists.txt b/icons/CMakeLists.txt new file mode 100644 index 0000000..06285c8 --- /dev/null +++ b/icons/CMakeLists.txt @@ -0,0 +1,4 @@ +add_subdirectory( action ) +add_subdirectory( app ) +add_subdirectory( cursor ) +add_subdirectory( thumbnail ) diff --git a/icons/action/CMakeLists.txt b/icons/action/CMakeLists.txt new file mode 100644 index 0000000..529659a --- /dev/null +++ b/icons/action/CMakeLists.txt @@ -0,0 +1 @@ +tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/gwenview/icons ) diff --git a/icons/app/CMakeLists.txt b/icons/app/CMakeLists.txt new file mode 100644 index 0000000..63f765b --- /dev/null +++ b/icons/app/CMakeLists.txt @@ -0,0 +1 @@ +tde_install_icons( ) diff --git a/icons/cursor/CMakeLists.txt b/icons/cursor/CMakeLists.txt new file mode 100644 index 0000000..033bb12 --- /dev/null +++ b/icons/cursor/CMakeLists.txt @@ -0,0 +1,4 @@ +install( + FILES zoom.png + DESTINATION ${DATA_INSTALL_DIR}/gwenview/cursors +) diff --git a/icons/thumbnail/CMakeLists.txt b/icons/thumbnail/CMakeLists.txt new file mode 100644 index 0000000..0d6754d --- /dev/null +++ b/icons/thumbnail/CMakeLists.txt @@ -0,0 +1,4 @@ +install( + FILES wait.png + DESTINATION ${DATA_INSTALL_DIR}/gwenview/thumbnail +) -- cgit v1.2.1