diff options
author | Alexander Golubev <fatzer2@gmail.com> | 2013-12-31 01:02:29 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-12-31 01:02:29 +0100 |
commit | 2da3d7904a207ce635caddc4fc95b2f1d19039b3 (patch) | |
tree | 290662b7f4181b17388253448372d6355527cbcd /tde-i18n-ru/docs/common | |
parent | 967ad8d9b773eb857d78c6bbc6845a3b4b3c2fe9 (diff) | |
download | tde-i18n-2da3d7904a207ce635caddc4fc95b2f1d19039b3.tar.gz tde-i18n-2da3d7904a207ce635caddc4fc95b2f1d19039b3.zip |
Initial cmake conversion
This resolves Bug 1329
Diffstat (limited to 'tde-i18n-ru/docs/common')
-rw-r--r-- | tde-i18n-ru/docs/common/CMakeLists.txt | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/tde-i18n-ru/docs/common/CMakeLists.txt b/tde-i18n-ru/docs/common/CMakeLists.txt new file mode 100644 index 00000000000..afb812efd9c --- /dev/null +++ b/tde-i18n-ru/docs/common/CMakeLists.txt @@ -0,0 +1,51 @@ +################################################# +# +# (C) 2013 Alexander Golubev (Fat-Zer) +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +set( common_docs_INSTALL + appheader.html + artistic-license.html + bsd-license.html + doxygen.css + fdl-license + fdl-license.html + fdl-notice.html + footer.html + gpl-license + gpl-license.html + header.html + lgpl-license + lgpl-license.html + mainfooter.html + mainheader.html + qpl-license.html + tde-common.css + tde-default.css + tde-localised.css + tde-web.css + x11-license.html + xml.dcl +) + +file( GLOB common_docs_LINK + RELATIVE ${TDE_HTML_DIR}/en/common/ + ${TDE_HTML_DIR}/en/common/*) + +foreach( _file IN LISTS common_docs_INSTALL) + list( REMOVE_ITEM common_docs_LINK _file ) + install( FILES ${_file} + DESTINATION ${HTML_INSTALL_DIR}/ru/common ) +endforeach( ) + +foreach( _file IN LISTS common_docs_LINK) + tde_install_symlink( + ${TDE_HTML_DIR}/en/common/${_file} + ${HTML_INSTALL_DIR}/ru/common/${_file} ) +endforeach( ) |