summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/add_test/CheckEmptyArgument.cmake
blob: 9bf797606a6e776831ed1618520a719657f54c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
if (NOT CMAKE_ARGV4 STREQUAL "A")
  message(FATAL_ERROR "wrong parsing of arguments")
endif()

if (NOT CMAKE_ARGV5 STREQUAL "")
  message(FATAL_ERROR "Empty argument was dropped")
endif()

if (NOT CMAKE_ARGV6 STREQUAL "B")
  message(FATAL_ERROR "wrong parsing of arguments")
endif()