summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Syntax/CMP0053-ParenInQuotedENV.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-05-08 17:25:06 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-05-08 17:25:06 (GMT)
commitd91c0f7a3f406dcf5c803e86ad6ac2e75ec0b85f (patch)
tree526a681f3385ffc883d6fba12317ae4b9f3b690c /Tests/RunCMake/Syntax/CMP0053-ParenInQuotedENV.cmake
parentdf6ff642d0f9ab40a18c04682f2f4b8b113e2060 (diff)
parent90f66381d3a8f5ba4fd5393e2ce9032d617f08bc (diff)
downloadCMake-d91c0f7a3f406dcf5c803e86ad6ac2e75ec0b85f.zip
CMake-d91c0f7a3f406dcf5c803e86ad6ac2e75ec0b85f.tar.gz
CMake-d91c0f7a3f406dcf5c803e86ad6ac2e75ec0b85f.tar.bz2
Merge topic 'dev/faster-evis'
90f66381 Help: Add release notes for policy CMP0053 6804cd04 Help: Add documentation on escaping changes with CMP0053 411f77d1 EVIS: Add tests for syntax corner cases and CMP0053 bc385658 EVIS: Reimplement using custom parsing code 25102efc EVIS: Add policy CMP0053 e423f1c0 Windows: Avoid () in environment variable references c179b289 Help: Add more reference targets to cmake-language.7 c3d98bd2 Utilities/Release: Use ${VAR} instead of @VAR@ syntax
Diffstat (limited to 'Tests/RunCMake/Syntax/CMP0053-ParenInQuotedENV.cmake')
-rw-r--r--Tests/RunCMake/Syntax/CMP0053-ParenInQuotedENV.cmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/RunCMake/Syntax/CMP0053-ParenInQuotedENV.cmake b/Tests/RunCMake/Syntax/CMP0053-ParenInQuotedENV.cmake
new file mode 100644
index 0000000..5559d4b
--- /dev/null
+++ b/Tests/RunCMake/Syntax/CMP0053-ParenInQuotedENV.cmake
@@ -0,0 +1,3 @@
+cmake_policy(SET CMP0053 NEW)
+set("ENV{e(x)}" value)
+message("-->$ENV{e\(x\)}<--")