diff options
Diffstat (limited to 'quanta/data/templates/binaries/images')
4 files changed, 56 insertions, 0 deletions
diff --git a/quanta/data/templates/binaries/images/CMakeLists.txt b/quanta/data/templates/binaries/images/CMakeLists.txt new file mode 100644 index 00000000..a5ff2fb5 --- /dev/null +++ b/quanta/data/templates/binaries/images/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 +# +################################################# + +add_subdirectory( jpg ) +add_subdirectory( others ) +add_subdirectory( png ) diff --git a/quanta/data/templates/binaries/images/jpg/CMakeLists.txt b/quanta/data/templates/binaries/images/jpg/CMakeLists.txt new file mode 100644 index 00000000..da042602 --- /dev/null +++ b/quanta/data/templates/binaries/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/binaries/images/jpg ) diff --git a/quanta/data/templates/binaries/images/others/CMakeLists.txt b/quanta/data/templates/binaries/images/others/CMakeLists.txt new file mode 100644 index 00000000..c32ef751 --- /dev/null +++ b/quanta/data/templates/binaries/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/binaries/images/others ) diff --git a/quanta/data/templates/binaries/images/png/CMakeLists.txt b/quanta/data/templates/binaries/images/png/CMakeLists.txt new file mode 100644 index 00000000..e9f7107b --- /dev/null +++ b/quanta/data/templates/binaries/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/binaries/images/png ) |