diff options
Diffstat (limited to 'quanta/data/templates/images')
-rw-r--r-- | quanta/data/templates/images/CMakeLists.txt | 18 | ||||
-rw-r--r-- | quanta/data/templates/images/jpg/CMakeLists.txt | 14 | ||||
-rw-r--r-- | quanta/data/templates/images/others/CMakeLists.txt | 14 | ||||
-rw-r--r-- | quanta/data/templates/images/png/CMakeLists.txt | 14 |
4 files changed, 60 insertions, 0 deletions
diff --git a/quanta/data/templates/images/CMakeLists.txt b/quanta/data/templates/images/CMakeLists.txt new file mode 100644 index 00000000..96ebe1df --- /dev/null +++ b/quanta/data/templates/images/CMakeLists.txt @@ -0,0 +1,18 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( jpg ) +add_subdirectory( png ) +add_subdirectory( others ) + +install( FILES dirinfo + RENAME .dirinfo + DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/images ) diff --git a/quanta/data/templates/images/jpg/CMakeLists.txt b/quanta/data/templates/images/jpg/CMakeLists.txt new file mode 100644 index 00000000..8396e4f1 --- /dev/null +++ b/quanta/data/templates/images/jpg/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES + demo.jpg + DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/images/jpg ) diff --git a/quanta/data/templates/images/others/CMakeLists.txt b/quanta/data/templates/images/others/CMakeLists.txt new file mode 100644 index 00000000..b0ba5d4b --- /dev/null +++ b/quanta/data/templates/images/others/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES + demo.tif + DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/images/others ) diff --git a/quanta/data/templates/images/png/CMakeLists.txt b/quanta/data/templates/images/png/CMakeLists.txt new file mode 100644 index 00000000..333eb7f3 --- /dev/null +++ b/quanta/data/templates/images/png/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES + demo.png + DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/images/png ) |