diff options
author | Slávek Banko <[email protected]> | 2020-07-03 10:34:10 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-07-03 10:34:10 +0200 |
commit | f6449dbda4a4fd4f97643a29e82f873dc7057fc2 (patch) | |
tree | d118e12563dc05c1b228b96eaaf72d44c2f0880d | |
parent | 3a5039bb6f6290f4f4314f59abb4d80fafc2092d (diff) | |
download | kchmviewer-f6449dbda4a4fd4f97643a29e82f873dc7057fc2.tar.gz kchmviewer-f6449dbda4a4fd4f97643a29e82f873dc7057fc2.zip |
Use PATH in call get_filename_component instead of DIRECTORY
to ensure compatibility with CMake <= 2.8.11.
Signed-off-by: Slávek Banko <[email protected]>
-rw-r--r-- | doc/CMakeLists.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 16eea36..0adf3d2 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -5,11 +5,10 @@ string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" ) # base documentation file( GLOB _dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} * ) -list( REMOVE_ITEM _dirs "tdeioslave" ) +list( REMOVE_ITEM _dirs html man tdeioslave ) foreach( _dir IN LISTS _dirs ) if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} - AND NOT "${_dir}" STREQUAL "man" AND ( "${_dir}" STREQUAL "en" OR "${_linguas}" MATCHES "^;*$" OR ";${_linguas};" MATCHES ";${_dir};" )) @@ -36,7 +35,7 @@ endforeach() file( GLOB _dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/tdeioslave tdeioslave/*/* ) foreach( _dir IN LISTS _dirs ) - get_filename_component( _lang ${_dir} DIRECTORY ) + get_filename_component( _lang ${_dir} PATH ) get_filename_component( _protocol ${_dir} NAME ) if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/tdeioslave/${_dir} AND NOT "${_lang}" STREQUAL "man" |