summaryrefslogtreecommitdiffstats
path: root/IconThemes
diff options
context:
space:
mode:
Diffstat (limited to 'IconThemes')
-rw-r--r--IconThemes/CMakeLists.txt2
-rw-r--r--IconThemes/mono/CMakeLists.txt8
-rw-r--r--IconThemes/mono/png/CMakeLists.txt8
-rw-r--r--IconThemes/mono/scalable/CMakeLists.txt7
4 files changed, 25 insertions, 0 deletions
diff --git a/IconThemes/CMakeLists.txt b/IconThemes/CMakeLists.txt
new file mode 100644
index 0000000..af497ee
--- /dev/null
+++ b/IconThemes/CMakeLists.txt
@@ -0,0 +1,2 @@
+
+add_subdirectory( mono )
diff --git a/IconThemes/mono/CMakeLists.txt b/IconThemes/mono/CMakeLists.txt
new file mode 100644
index 0000000..510ec91
--- /dev/null
+++ b/IconThemes/mono/CMakeLists.txt
@@ -0,0 +1,8 @@
+
+#add_subdirectory( png )
+add_subdirectory( scalable )
+
+install(
+ FILES index.theme
+ DESTINATION ${ICON_INSTALL_DIR}/mono
+)
diff --git a/IconThemes/mono/png/CMakeLists.txt b/IconThemes/mono/png/CMakeLists.txt
new file mode 100644
index 0000000..cdf24ce
--- /dev/null
+++ b/IconThemes/mono/png/CMakeLists.txt
@@ -0,0 +1,8 @@
+
+set( _file trinity.png )
+set( _icons_size 16x16 22x22 32x32 48x48 64x64 96x96 128x128 192x192 256x256 )
+
+
+foreach( _size ${_icons_size} )
+
+endforeach( _sixe )
diff --git a/IconThemes/mono/scalable/CMakeLists.txt b/IconThemes/mono/scalable/CMakeLists.txt
new file mode 100644
index 0000000..8f25ba1
--- /dev/null
+++ b/IconThemes/mono/scalable/CMakeLists.txt
@@ -0,0 +1,7 @@
+
+set( _icon_type actions apps categories devices mimetypes places )
+
+foreach( icon_type ${_icon_type} )
+ file( GLOB _files ${CMAKE_CURRENT_SOURCE_DIR}/${icon_type}/*.svgz )
+ install( FILES ${_files} DESTINATION ${ICON_INSTALL_DIR}/mono/scalable/${icon_type} )
+endforeach( icon_type )