commit | 89eb1970e9b0fd6c80ab1816144c22516662dc76 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Jul 08 21:39:43 2015 +0100 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Jul 08 21:39:43 2015 +0100 |
tree | 09a44990dbc5f498cbdb20b549f3e957d591109d | |
parent | 4d2ef297cb4a8b0ce68740f3a49961380fcab61c [diff] |
mklink needs /d for directories
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 8023803..864ea77 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt
@@ -104,7 +104,7 @@ if (CMAKE_HOST_UNIX) set(command ln -s ${target} ${link}) else() - set(command cmd.exe /c mklink ${link} ${target}) + set(command cmd.exe /c mklink /d ${link} ${target}) endif() execute_process(COMMAND ${command}