commit | 9e867214c372ec46ae668daec5b4d1e86e8925d3 | [log] [tgz] |
---|---|---|
author | Darryl Green <darryl.green@arm.com> | Fri Jun 08 10:07:32 2018 +0100 |
committer | Simon Butcher <simon.butcher@arm.com> | Mon Jun 11 11:31:40 2018 +0100 |
tree | e75cf551575559f66bac863b8aa24c3ab2683e7f | |
parent | 215a40631f39c407a65d93535579a1f438c7c635 [diff] |
Change symlink to hardlink to avoid permission issues
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7641491..b9a0ce0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -70,7 +70,7 @@ if (IS_DIRECTORY ${target}) set(command cmd.exe /c mklink /j ${link} ${target}) else() - set(command cmd.exe /c mklink ${link} ${target}) + set(command cmd.exe /c mklink /h ${link} ${target}) endif() endif()