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.
17 lines
634 B
17 lines
634 B
10 years ago
|
if("x${CMAKE_GENERATOR_PLATFORM}" STREQUAL "xTest Platform")
|
||
|
message(SEND_ERROR "CMAKE_GENERATOR_PLATFORM is \"Test Platform\" as expected.")
|
||
|
else()
|
||
|
message(FATAL_ERROR
|
||
|
"CMAKE_GENERATOR_PLATFORM is \"${CMAKE_GENERATOR_PLATFORM}\" "
|
||
|
"but should be \"Test Platform\"!")
|
||
|
endif()
|
||
|
if(CMAKE_GENERATOR MATCHES "Visual Studio")
|
||
|
if("x${CMAKE_VS_PLATFORM_NAME}" STREQUAL "xTest Platform")
|
||
|
message(SEND_ERROR "CMAKE_VS_PLATFORM_NAME is \"Test Platform\" as expected.")
|
||
|
else()
|
||
|
message(FATAL_ERROR
|
||
|
"CMAKE_VS_PLATFORM_NAME is \"${CMAKE_VS_PLATFORM_NAME}\" "
|
||
|
"but should be \"Test Platform\"!")
|
||
|
endif()
|
||
|
endif()
|