diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-01-02 02:27:18 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-01-13 00:44:04 +0100 |
commit | 5f692d18937536679f2fa7f41766e3b92aeeae8f (patch) | |
tree | 9c693096400dbe3210cb91a5bd19497c5190ba44 /quanta/data/toolbars/html/CMakeLists.txt | |
parent | 92326f9e69bb4aee30dd0f088523d293fc0804da (diff) | |
download | tdewebdev-5f692d18937536679f2fa7f41766e3b92aeeae8f.tar.gz tdewebdev-5f692d18937536679f2fa7f41766e3b92aeeae8f.zip |
Quanta: Change CMake rules to make tarballs for toolbars created during building.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 8155faa4ac0e5ac5b6e304c68d04a6df25690feb)
Diffstat (limited to 'quanta/data/toolbars/html/CMakeLists.txt')
-rw-r--r-- | quanta/data/toolbars/html/CMakeLists.txt | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/quanta/data/toolbars/html/CMakeLists.txt b/quanta/data/toolbars/html/CMakeLists.txt index edfb88dc..810d4e2c 100644 --- a/quanta/data/toolbars/html/CMakeLists.txt +++ b/quanta/data/toolbars/html/CMakeLists.txt @@ -3,13 +3,24 @@ # (C) 2010-2011 Serghei Amelian # serghei (DOT) amelian (AT) gmail.com # +# (C) 2019 Slávek Banko +# slavek.banko (AT) axis.cz +# # Improvements and feedback are welcome # # This file is released under GPL >= 2 # ################################################# -install( FILES - forms.toolbar.tgz lists.toolbar.tgz other.toolbar.tgz - standard.toolbar.tgz tables.toolbar.tgz style.toolbar.tgz - DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars/html ) + +##### other data ################################ + +foreach( _toolbar forms lists other standard style tables ) + + tde_create_tarball( + TARGET ${_toolbar}.toolbar.tgz + FILES ${_toolbar}.actions ${_toolbar}.toolbar + DESTINATION ${DATA_INSTALL_DIR}/quanta/toolbars/html + ) + +endforeach( ) |