summaryrefslogtreecommitdiffstats
path: root/Tests/VariableUnusedViaSet
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2010-09-16 17:52:54 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2010-09-16 17:52:54 (GMT)
commitf7438ca7ac62007aec39d0e9134d556607ccbff3 (patch)
treebc64afebef541cf559f890c44598f83143b32d1a /Tests/VariableUnusedViaSet
parent995cfb0e2a4d2787371f87568bc943e6ad34d55c (diff)
downloadCMake-f7438ca7ac62007aec39d0e9134d556607ccbff3.zip
CMake-f7438ca7ac62007aec39d0e9134d556607ccbff3.tar.gz
CMake-f7438ca7ac62007aec39d0e9134d556607ccbff3.tar.bz2
Add test for unused detection via setting it
Diffstat (limited to 'Tests/VariableUnusedViaSet')
-rw-r--r--Tests/VariableUnusedViaSet/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/VariableUnusedViaSet/CMakeLists.txt b/Tests/VariableUnusedViaSet/CMakeLists.txt
new file mode 100644
index 0000000..0123ab2
--- /dev/null
+++ b/Tests/VariableUnusedViaSet/CMakeLists.txt
@@ -0,0 +1,4 @@
+set(UNUSED_VARIABLE)
+# Warning should occur here
+set(UNUSED_VARIABLE "Usage")
+message(STATUS "${UNUSED_VARIABLE}")