summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/VS10Project/VsSourceSettingsTool-check.cmake
blob: 29a89c3ab3207ba82456a44565ba856b4b50360d (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
macro(ensure_props_set projectFile)
  if(NOT EXISTS "${projectFile}")
    set(RunCMake_TEST_FAILED "Project file ${projectFile} does not exist.")
    return()
  endif()

  set(FirstSettingFound FALSE)
  set(SecondSettingFound FALSE)

  file(STRINGS "${projectFile}" lines)
  foreach(line IN LISTS lines)
    if(line MATCHES "<TargetProperty1.*Debug.*>TargetProperty1ValueDebug</TargetProperty1>")
      if (FirstSettingFound)
        message("TargetProperty1 setting found twice")
        set(SecondSettingFound TRUE)
      else()
        message("TargetProperty1 setting found once")
        set(FirstSettingFound TRUE)
      endif()
    endif()
  endforeach()

  if (NOT FirstSettingFound)
    set(RunCMake_TEST_FAILED "TargetProperty1 setting not found at all")
    return()
  endif()

  if (NOT SecondSettingFound)
    set(RunCMake_TEST_FAILED "TargetProperty1 setting found once when it should be found twice")
    return()
  endif()
endmacro()

ensure_props_set("${RunCMake_TEST_BINARY_DIR}/foo.vcxproj")