CMakeLists.txt 309 B

12345678
  1. # NOTE: Changing lines in here changes the test results since the first
  2. # instance shouldn't warn, but the second should and they have the same message
  3. # A warning should NOT be issued for this line:
  4. set(UNUSED_VARIABLE)
  5. # Warning should occur here:
  6. set(UNUSED_VARIABLE)
  7. message(STATUS "${UNUSED_VARIABLE}")