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.
9 lines
394 B
9 lines
394 B
8 years ago
|
set(windows_cmd "a \"b c\" 'd e' \";\" \\ \"c:\\windows\\path\\\\\" \\\"")
|
||
|
set(windows_exp "a;b c;'d;e';\;;\\;c:\\windows\\path\\;\"")
|
||
|
separate_arguments(windows_out WINDOWS_COMMAND "${windows_cmd}")
|
||
|
|
||
|
if(NOT "${windows_out}" STREQUAL "${windows_exp}")
|
||
|
message(FATAL_ERROR "separate_arguments windows-style failed. "
|
||
|
"Expected\n [${windows_exp}]\nbut got\n [${windows_out}]\n")
|
||
|
endif()
|