diff options
| author | Phil Christensen <philc@microsoft.com> | 2019-04-05 09:38:26 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-05 09:38:26 -0700 |
| commit | dbdba212e1cbee10c59b2d56cc2f083add415265 (patch) | |
| tree | d816454fda939c0350292997edaa0c94e45d1e2b /ports/anax | |
| parent | 03981bb5607649bbad2eb3ff3872211fa38a8b46 (diff) | |
| download | vcpkg-dbdba212e1cbee10c59b2d56cc2f083add415265.tar.gz vcpkg-dbdba212e1cbee10c59b2d56cc2f083add415265.zip | |
[glew][octomap][roaring] fix parallel config (#5958)
* [glew][octomap][roaring] fix parallel config
fix CMake Error: Could not open file for write in copy operation
* [anax] fix parallel config
Diffstat (limited to 'ports/anax')
| -rw-r--r-- | ports/anax/CONTROL | 2 | ||||
| -rw-r--r-- | ports/anax/portfile.cmake | 18 |
2 files changed, 5 insertions, 15 deletions
diff --git a/ports/anax/CONTROL b/ports/anax/CONTROL index 12be38d11..459692ac5 100644 --- a/ports/anax/CONTROL +++ b/ports/anax/CONTROL @@ -1,3 +1,3 @@ Source: anax -Version: 2.1.0-3 +Version: 2.1.0-4 Description: An open source C++ entity system. <https://github.com/miguelmartin75/anax> diff --git a/ports/anax/portfile.cmake b/ports/anax/portfile.cmake index 8881957fc..49fbb372d 100644 --- a/ports/anax/portfile.cmake +++ b/ports/anax/portfile.cmake @@ -1,11 +1,3 @@ -# Common Ambient Variables: -# VCPKG_ROOT_DIR = <C:\path\to\current\vcpkg> -# TARGET_TRIPLET is the current triplet (x86-windows, etc) -# PORT is the current port name (zlib, etc) -# CURRENT_BUILDTREES_DIR = ${VCPKG_ROOT_DIR}\buildtrees\${PORT} -# CURRENT_PACKAGES_DIR = ${VCPKG_ROOT_DIR}\packages\${PORT}_${TARGET_TRIPLET} -# - include(vcpkg_common_functions) vcpkg_from_github( @@ -14,17 +6,15 @@ vcpkg_from_github( REF v2.1.0 SHA512 b573733b5f9634bf8cfc5b0715074f9a8ee29ecb48dc981d9371254a1f6ff8afbbb9ba6aa0877d53e518e5486ecc398a6d331fb9b5dbfd17d8707679216e11a3 HEAD_REF master -) - -vcpkg_apply_patches( - SOURCE_PATH ${SOURCE_PATH} - PATCHES ${CMAKE_CURRENT_LIST_DIR}/Add-bin-output.patch + PATCHES + Add-bin-output.patch ) vcpkg_configure_cmake( SOURCE_PATH ${SOURCE_PATH} + DISABLE_PARALLEL_CONFIGURE OPTIONS - -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON + -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON ) vcpkg_install_cmake() |
