mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 21:00:17 -06:00
This adds VS_DEBUGGER_COMMAND_ARGUMENTS and VS_DEBUGGER_ENVIRONMENT as well as allowing VS_DEBUGGER_* to use generator expressions.
23 lines
701 B
CMake
23 lines
701 B
CMake
set(vcProjectFile "${RunCMake_TEST_BINARY_DIR}/foo.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 "foo.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()
|