commit | 48417677833df75009ca878477957a347bf6d7e0 | [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:40:31 2018 +0100 |
tree | 51097eefa5645ab9062c0f11bada9213d91269c7 | |
parent | d866abe377932723cfed3b77fcee4f20edf555ee [diff] |
Change symlink to hardlink to avoid permission issues
diff --git a/CMakeLists.txt b/CMakeLists.txt index 11a62e2..ecacc7a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -32,7 +32,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()