From 3759877f3e3e241dde3dd03f7594abfe1c120d47 Mon Sep 17 00:00:00 2001 From: Hongpeng Liu Date: Mon, 6 Jul 2020 20:38:25 +0800 Subject: [PATCH] Fix dependency of custom command generated by qt5_add_big_resources --- src/corelib/Qt5CoreMacros.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corelib/Qt5CoreMacros.cmake b/src/corelib/Qt5CoreMacros.cmake index 88350cb68b..c973799140 100644 --- a/src/corelib/Qt5CoreMacros.cmake +++ b/src/corelib/Qt5CoreMacros.cmake @@ -406,7 +406,7 @@ function(qt5_add_big_resources outfiles) add_custom_command(OUTPUT ${outfile} COMMAND ${Qt5Core_RCC_EXECUTABLE} ARGS ${rcc_options} --name ${outfilename} --pass 2 --temp $ --output ${outfile} ${infile} - DEPENDS rcc_object_${outfilename} + DEPENDS rcc_object_${outfilename} $ VERBATIM) list(APPEND ${outfiles} ${outfile}) endforeach() -- 2.26.2.windows.1