Remove need for elevated command line in Windows
Changes use of mklink in Windows test builds, to create junctions instead of directory symbolic links. This removes the need for an elevated command prompt when running cmake to create the Visual Studio project files.
This commit is contained in:
parent
d49a142c6f
commit
8477d37ee6
@ -115,7 +115,7 @@ if (NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
|
|||||||
if (CMAKE_HOST_UNIX)
|
if (CMAKE_HOST_UNIX)
|
||||||
set(command ln -s ${target} ${link})
|
set(command ln -s ${target} ${link})
|
||||||
else()
|
else()
|
||||||
set(command cmd.exe /c mklink /d ${link} ${target})
|
set(command cmd.exe /c mklink /j ${link} ${target})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
execute_process(COMMAND ${command}
|
execute_process(COMMAND ${command}
|
||||||
|
Loading…
Reference in New Issue
Block a user