You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
set(mylist "b;c;b;a;a;c;b;a;c;b")
|
|
list(REMOVE_DUPLICATES mylist)
|
|
if(NOT mylist STREQUAL "b;c;a")
|
|
message(SEND_ERROR "Expected b;c;a, got ${mylist}")
|
|
endif()
|