diff options
| author | Mårten Nordheim <Morten242@gmail.com> | 2016-11-11 01:14:01 +0100 |
|---|---|---|
| committer | Mårten Nordheim <Morten242@gmail.com> | 2016-11-11 01:16:24 +0100 |
| commit | 34c585901ed8c32d8c7b1243225c1eee97ab3026 (patch) | |
| tree | 0f3a323479bc197e788f0596b85e1070f63fa18a /scripts | |
| parent | 259af8514a3c3634c1980d8aebd7a57752d8e1a9 (diff) | |
| download | vcpkg-34c585901ed8c32d8c7b1243225c1eee97ab3026.tar.gz vcpkg-34c585901ed8c32d8c7b1243225c1eee97ab3026.zip | |
Add /m switch to vcpkg_install_cmake
(https://github.com/Microsoft/vcpkg/issues/258#issuecomment-259839046)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/cmake/vcpkg_install_cmake.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/cmake/vcpkg_install_cmake.cmake b/scripts/cmake/vcpkg_install_cmake.cmake index 14f1bc94d..30aff0fe1 100644 --- a/scripts/cmake/vcpkg_install_cmake.cmake +++ b/scripts/cmake/vcpkg_install_cmake.cmake @@ -1,7 +1,7 @@ function(vcpkg_install_cmake) message(STATUS "Package ${TARGET_TRIPLET}-rel") vcpkg_execute_required_process( - COMMAND ${CMAKE_COMMAND} --build . --config Release --target install + COMMAND ${CMAKE_COMMAND} --build . --config Release --target install -- /m WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel LOGNAME package-${TARGET_TRIPLET}-rel ) @@ -9,7 +9,7 @@ function(vcpkg_install_cmake) message(STATUS "Package ${TARGET_TRIPLET}-dbg") vcpkg_execute_required_process( - COMMAND ${CMAKE_COMMAND} --build . --config Debug --target install + COMMAND ${CMAKE_COMMAND} --build . --config Debug --target install -- /m WORKING_DIRECTORY ${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg LOGNAME package-${TARGET_TRIPLET}-dbg ) |
