diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2016-11-10 17:57:43 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-10 17:57:43 -0800 |
| commit | d746bf58224606b7c7fd2adad79bf9279a741d56 (patch) | |
| tree | 535527d9d97d19d26cb97ecc603fcbc001faced1 /scripts | |
| parent | 02b45c5a55515ae2e732b850e2f1bc2f45efde9e (diff) | |
| parent | 34c585901ed8c32d8c7b1243225c1eee97ab3026 (diff) | |
| download | vcpkg-d746bf58224606b7c7fd2adad79bf9279a741d56.tar.gz vcpkg-d746bf58224606b7c7fd2adad79bf9279a741d56.zip | |
Merge pull request #273 from Morten242/multithreaded_install
Add /m switch to vcpkg_install_cmake
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 ) |
