From 4808f8e67b4c7cd7b1bb2f03467b2f220aab814f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 8 Mar 2024 12:21:43 +0900 Subject: [PATCH] cmake files: change keywords to lower case Signed-off-by: Michele Calgaro --- CMakeLists.txt | 2 +- tqt3integration/utils/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a7de8d9a3..6588473a2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -76,7 +76,7 @@ add_custom_target( install-apidox install( CODE " if( EXISTS ${CMAKE_BINARY_DIR}/apidocs ) file( - INSTALL ${CMAKE_BINARY_DIR}/apidocs/ + install ${CMAKE_BINARY_DIR}/apidocs/ DESTINATION ${HTML_INSTALL_DIR}/en/${PROJECT_NAME}-apidocs PATTERN doxygen_sqlite3.db EXCLUDE PATTERN installdox-slow EXCLUDE diff --git a/tqt3integration/utils/CMakeLists.txt b/tqt3integration/utils/CMakeLists.txt index c75567af5..a65b3108e 100644 --- a/tqt3integration/utils/CMakeLists.txt +++ b/tqt3integration/utils/CMakeLists.txt @@ -31,7 +31,7 @@ tde_add_executable( gen AUTOMOC LINK tdecore-shared ) -ADD_CUSTOM_COMMAND( +add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/tqttde_functions.cpp ${CMAKE_CURRENT_BINARY_DIR}/module_functions.cpp @@ -44,6 +44,6 @@ ADD_CUSTOM_COMMAND( DEPENDS gen ) -ADD_CUSTOM_TARGET( generate_tqt3_bindings +add_custom_target( generate_tqt3_bindings DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/tqttde_functions.cpp )