summaryrefslogtreecommitdiffstats
path: root/template/commonCMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'template/commonCMakeLists.txt')
-rw-r--r--template/commonCMakeLists.txt11
1 files changed, 7 insertions, 4 deletions
diff --git a/template/commonCMakeLists.txt b/template/commonCMakeLists.txt
index 02b3efccaf5..bee9b92b504 100644
--- a/template/commonCMakeLists.txt
+++ b/template/commonCMakeLists.txt
@@ -3,7 +3,7 @@
# (C) 2013 Alexander Golubev (Fat-Zer)
# fatzer2 (AT) gmail.com
#
-# (C) 2020 Slávek Banko
+# (C) 2020-2022 Slávek Banko
# slavek.banko (AT) axis.cz
#
# Improvements and feedback are welcome
@@ -12,7 +12,7 @@
#
#################################################
-cmake_minimum_required( VERSION 2.8.12 )
+cmake_minimum_required( VERSION 3.1 )
##### general package setup #####################
@@ -21,7 +21,6 @@ string( REGEX REPLACE ".*-([^-]*)$" "\\1" _lang ${CMAKE_CURRENT_SOURCE_DIR} )
message( STATUS "Configure for language ${_lang}" )
project( tde-i18n-${_lang} )
-set( VERSION R14.0.10 )
##### include essential cmake modules ###########
@@ -98,8 +97,12 @@ if( BUILD_DOC )
endforeach( )
endif()
foreach( _file IN LISTS common_docs_LINK )
+ file( RELATIVE_PATH _common_link_target
+ "${HTML_INSTALL_DIR}/${_lang}/common"
+ "${TDE_HTML_DIR}/en/common/${_file}"
+ )
tde_install_symlink(
- ${TDE_HTML_DIR}/en/common/${_file}
+ ${_common_link_target}
${HTML_INSTALL_DIR}/${_lang}/common/${_file}
)
endforeach( )