summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/VS10Project/VsPlatformToolset-check.cmake
blob: 0d82d3feb479e11bd60e7c7a6e63c3bf0b9e78ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
macro(ReadPlatformToolset tgt outvar)
  set(vcProjectFile "${RunCMake_TEST_BINARY_DIR}/${tgt}.vcxproj")
  if(NOT EXISTS "${vcProjectFile}")
    set(RunCMake_TEST_FAILED "Project file ${tgt}.vcxproj does not exist.")
    return()
  endif()

  set(HAVE_PlatformToolset 0)

  file(STRINGS "${vcProjectFile}" lines)
  foreach(line IN LISTS lines)
    if(line MATCHES "^ *<PlatformToolset>([^<>]+)</PlatformToolset>")
      set(${outvar} "${CMAKE_MATCH_1}")
      set(HAVE_PlatformToolset 1)
      break()
    endif()
  endforeach()

  if(NOT HAVE_PlatformToolset)
    set(RunCMake_TEST_FAILED "Project file ${tgt}.vcxproj does not have a <PlatformToolset> field.")
    return()
  endif()
endmacro()

ReadPlatformToolset(NormalPlatformToolset NORMAL_TOOLSET)
ReadPlatformToolset(OverridenPlatformToolset OVERRIDEN_TOOLSET)

if (NOT "${OVERRIDEN_TOOLSET}" STREQUAL "MyCustomToolset")
  set(RunCMake_TEST_FAILED "Failed to override the platform toolset")
  return()
endif()

if ("${NORMAL_TOOLSET}" STREQUAL "MyCustomToolset")
  set(RunCMake_TEST_FAILED "Main toolset was overridden (it shouldn't)")
  return()
endif()