From ba654f182f0140ea7b44b227edf20c7acb56f594 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20Gr=C3=A4sman?= Date: Tue, 20 Dec 2022 19:49:51 +0100 Subject: [PATCH] [cmake] Print full source path of resource headers This makes it easier to see where the resource headers come from. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b8a025..a9a938a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -70,7 +70,7 @@ if (NOT TARGET clang-resource-headers) add_custom_command(OUTPUT "${dst}" DEPENDS "${src}" COMMAND ${CMAKE_COMMAND} -E copy_if_different "${src}" "${dst}" - COMMENT "Copying clang's ${file}..." + COMMENT "Copying ${src}..." ) list(APPEND out_files "${dst}") endforeach()