diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-16 17:52:54 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-16 17:52:54 (GMT) |
commit | f7438ca7ac62007aec39d0e9134d556607ccbff3 (patch) | |
tree | bc64afebef541cf559f890c44598f83143b32d1a /Tests/VariableUnusedViaSet | |
parent | 995cfb0e2a4d2787371f87568bc943e6ad34d55c (diff) | |
download | CMake-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.txt | 4 |
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}") |