mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-03-23 21:22:56 +00:00
Fix out-of-tree testing symlinks on Windows
This commit is contained in:
@@ -67,7 +67,11 @@ function(link_to_source base_name)
|
||||
if (CMAKE_HOST_UNIX)
|
||||
set(command ln -s ${target} ${link})
|
||||
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()
|
||||
|
||||
execute_process(COMMAND ${command}
|
||||
|
||||
Reference in New Issue
Block a user