aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-10-05 17:49:28 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-10-05 17:49:28 -0700
commit2c9ee072da34a925f0faf22596e532d378930582 (patch)
treef856eae473332cf58758fd4a8e173991e1bb91f2 /ports
parent06798b6528b777ba2e2a9af59774309db5cf5e52 (diff)
downloadvcpkg-2c9ee072da34a925f0faf22596e532d378930582.tar.gz
vcpkg-2c9ee072da34a925f0faf22596e532d378930582.zip
[vcpkg_build_cmake] Refactor _build_ and _install_ into a single cmake script.
Regenerate documentation. Remove MSVC_64_TOOLSET option because it's obsolete.
Diffstat (limited to 'ports')
-rw-r--r--ports/folly/portfile.cmake2
-rw-r--r--ports/protobuf/portfile.cmake3
2 files changed, 2 insertions, 3 deletions
diff --git a/ports/folly/portfile.cmake b/ports/folly/portfile.cmake
index 919e799d5..1b30ad86c 100644
--- a/ports/folly/portfile.cmake
+++ b/ports/folly/portfile.cmake
@@ -38,7 +38,7 @@ vcpkg_configure_cmake(
# Folly runs built executables during the build, so they need access to the installed DLLs.
set(ENV{PATH} "$ENV{PATH};${CURRENT_INSTALLED_DIR}/bin;${CURRENT_INSTALLED_DIR}/debug/bin")
-vcpkg_install_cmake(MSVC_64_TOOLSET)
+vcpkg_install_cmake()
vcpkg_copy_pdbs()
diff --git a/ports/protobuf/portfile.cmake b/ports/protobuf/portfile.cmake
index e3cae639c..e7f45c36c 100644
--- a/ports/protobuf/portfile.cmake
+++ b/ports/protobuf/portfile.cmake
@@ -58,8 +58,7 @@ vcpkg_configure_cmake(
-DCMAKE_INSTALL_CMAKEDIR=share/protobuf
)
-# Using 64-bit toolset to avoid occassional Linker Out-of-Memory issues.
-vcpkg_install_cmake(MSVC_64_TOOLSET)
+vcpkg_install_cmake()
# It appears that at this point the build hasn't actually finished. There is probably
# a process spawned by the build, therefore we need to wait a bit.