summaryrefslogtreecommitdiffstats
path: root/Tests/VSResource
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-09-25 13:52:13 (GMT)
committerBrad King <brad.king@kitware.com>2017-09-25 14:07:48 (GMT)
commitdf965cb9638d589be55daa520c13df32e1afd91d (patch)
tree8e6a2747482fab8f7d0055dc11fcd2723108bd0c /Tests/VSResource
parenteae3765b67b653d3f00afa44a60719a387262af8 (diff)
downloadCMake-df965cb9638d589be55daa520c13df32e1afd91d.zip
CMake-df965cb9638d589be55daa520c13df32e1afd91d.tar.gz
CMake-df965cb9638d589be55daa520c13df32e1afd91d.tar.bz2
Ninja: Fix quoting of RC language depfile in cmcldeps call
Since commit v3.0.0-rc1~448^2 (Ninja: use deps = gcc/msvc feature, 2013-10-18) the value of the `DEP_FILE` binding already includes the needed quoting to refer to the file. However, that commit forgot to update one of the `$DEP_FILE` references to not be quoted anymore. The offending code path currently only affects cmcldeps for RC. Remove the extra quoting now. Fixes: #17298
Diffstat (limited to 'Tests/VSResource')
-rw-r--r--Tests/VSResource/CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/VSResource/CMakeLists.txt b/Tests/VSResource/CMakeLists.txt
index 718e624..fb47c7e 100644
--- a/Tests/VSResource/CMakeLists.txt
+++ b/Tests/VSResource/CMakeLists.txt
@@ -56,3 +56,10 @@ endif()
set_property(TARGET VSResource
PROPERTY VS_GLOBAL_CMakeTestVsGlobalVariable "test val")
+
+if(CMAKE_GENERATOR MATCHES "Ninja|Visual Studio")
+ cmake_policy(PUSH)
+ cmake_policy(SET CMP0037 OLD)
+ add_library("My ResourceLib" lib.cpp lib.rc)
+ cmake_policy(POP)
+endif()