cmake/Tests/RunCMake/VS10Project/VsDebuggerCommand-check.cmake

25 lines
788 B
CMake
Raw Normal View History

2019-11-11 23:01:05 +01:00
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()
2018-08-09 18:06:22 +02:00
2019-11-11 23:01:05 +01:00
set(debuggerCommandSet FALSE)
2018-08-09 18:06:22 +02:00
2019-11-11 23:01:05 +01:00
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()
2018-08-09 18:06:22 +02:00
endif()
2019-11-11 23:01:05 +01:00
endforeach()
if(NOT debuggerCommandSet)
set(RunCMake_TEST_FAILED "LocalDebuggerCommand not found or not set correctly.")
return()
2018-08-09 18:06:22 +02:00
endif()
endforeach()