mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 23:21:04 +00:00
Fix out-of-tree testing symlinks on Windows
This commit is contained in:
parent
61e396b597
commit
d866abe377
|
@ -29,7 +29,11 @@ function(link_to_source base_name)
|
||||||
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 /j ${link} ${target})
|
if (IS_DIRECTORY ${target})
|
||||||
|
set(command cmd.exe /c mklink /j ${link} ${target})
|
||||||
|
else()
|
||||||
|
set(command cmd.exe /c mklink ${link} ${target})
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
execute_process(COMMAND ${command}
|
execute_process(COMMAND ${command}
|
||||||
|
|
Loading…
Reference in a new issue