diff options
author | Michele Calgaro <[email protected]> | 2024-02-14 16:16:35 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-02-15 10:58:09 +0900 |
commit | dc9ec2711be0fae16d667a8e9cb38d04ebd5ae41 (patch) | |
tree | c2819782be103c0f276e99d697e7392202fac97b /CMakeLists.txt | |
parent | 2d7d2122cf33aa713cebef95981305039c798003 (diff) | |
download | tdebase-dc9ec2711be0fae16d667a8e9cb38d04ebd5ae41.tar.gz tdebase-dc9ec2711be0fae16d667a8e9cb38d04ebd5ae41.zip |
Simplify code since cmake minimum version is now 3.5
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e7ab1d23c..6dc8adc20 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -53,14 +53,8 @@ tde_setup_paths( ) ##### add apidox targets ############ -if( "${CMAKE_VERSION}" VERSION_LESS "3.1" ) - set( CMAKE_ENV "env" ) -else() - set( CMAKE_ENV "${CMAKE_COMMAND};-E;env" ) -endif() - add_custom_target( apidox - COMMAND ${CMAKE_ENV} + COMMAND ${CMAKE_COMMAND} -E env "TQTDOCDIR=/usr/share/tqt3/doc/html" "DOXDATA=${HTML_INSTALL_DIR}/en/common" ${CMAKE_SOURCE_DIR}/admin/doxygen.sh |