x64Platform.cmake 239 B

1234567
  1. foreach(v CMAKE_GENERATOR_PLATFORM CMAKE_VS_PLATFORM_NAME)
  2. if("x${${v}}" STREQUAL "xx64")
  3. message(STATUS "${v} is 'x64' as expected.")
  4. else()
  5. message(FATAL_ERROR "${v} is '${${v}}' but should be 'x64'!")
  6. endif()
  7. endforeach()