summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/VS10Project/VsDebuggerCommand-check.cmake
blob: 00288d483d8c889e42910c6842ece60c7f25b0af (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
foreach(target foo bar)
  set(vcProjectFile "${RunCMake_TEST_BINARY_DIR}/${target}.vcxproj")
  if(NOT EXISTS "${vcProjectFile}")
    set(RunCMake_TEST_FAILED "Project file ${vcProjectFile} does not exist.")
    return()
  endif()

  set(debuggerCommandSet FALSE)

  file(STRINGS "${vcProjectFile}" lines)
  foreach(line IN LISTS lines)
    if(line MATCHES "^ *<LocalDebuggerCommand[^>]*>([^<>]+)</LocalDebuggerCommand>$")
      if("${CMAKE_MATCH_1}" STREQUAL "my-debugger-command foo")
          message(STATUS "${target}.vcxproj has debugger command set")
          set(debuggerCommandSet TRUE)
      endif()
    endif()
  endforeach()

  if(NOT debuggerCommandSet)
    set(RunCMake_TEST_FAILED "LocalDebuggerCommand not found or not set correctly.")
    return()
  endif()
endforeach()