aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-08-21[sol2] Update library to 3.0.3 (#7804)Ehsan
2019-08-21[snowhouse] Update library to 3.1.1 (#7805)Ehsan
2019-08-21[safeint] Update library to 3.21 (#7806)Ehsan
2019-08-21[reproc] Update library to 8.0.1 (#7807)Ehsan
2019-08-21[re2] Update library to 2019-08-01 (#7808)Ehsan
2019-08-21disabled examplesStijn Herfst
2019-08-21Merge branch 'master' into path_separatorAlexander Neumann
2019-08-20[openimageio]Fix find correct debug/release openexr libraries. (#7747)JackBoosY
2019-08-20[embree3] Fix install path (#7767)Lily
2019-08-20[azure-iot] vcpkg update for master/public-preview release (#7791)ewertons
2019-08-20ixwebsocket: update to version 5.0.4 (#7789)Benjamin Sergeant
2019-08-20[luajit]Separate debug/release build path and fix generate pdbs. (#7764)JackBoosY
* [luajit]Separate debug/release build path and fix generate pdbs. * [luajit]Replace port name to ${PORT}
2019-08-20[fribidi]Fix static library suffix in windows-static (#7768)JackBoosY
2019-08-20fix7725issue - Change include header path (#7769)shuitianxu
2019-08-20[tensorflow] add new port for linux (#7568)dan-shaw
* [+] Add tensorflow-cc port (Linux only) * [~] Refactor installation of tensorflow/external 1. Install tensorflow/external to tensorflow-etc/external; 2. Fix TensorflowCCConfig.cmake accordingly. * [tensorflow] Work in progress * fix tensorflow linux config * [tensorflow] partial support for windows * fix config paths * use environmental variables instead * remove files * add python_path * add verbose error messages * review fixes * [tensorflow] refactor config file * minor changes * set arch for CI
2019-08-20[eastl] Update library to 3.14.01 (#7786)Ehsan
2019-08-20[sparsehash] Add new port (#7772)zi-m
* sparsehash * Update portfile.cmake
2019-08-20[dimcli] Update library to 5.0.0 (#7785)Ehsan
2019-08-20[vcpkg]Port toolchains (#7687)Curtis J Bezault
* checkpoint commit * Only set VCPKG_ENV_OVERRIDES_FILE if it exists * First pass at working port-toolchain * Update VERSION.txt * Return rvalue * Fix compilation error * Some fixes are requested by @ubsan * Fix another compilation error
2019-08-20[argagg] Update library to 0.4.6 (#7752)Ehsan
2019-08-20[argparse] Update library to 1.9 (#7753)Ehsan
2019-08-20[qtkeychain]Add new port (#7760)Long Huan
* new port qtkeychain * Update CONTROL * not build translations on linux Avoiding issues #7771 by not build translations on linux
2019-08-20[libspatialindex]Add new port (#7762)Long Huan
* new port libspatialindex * Update portfile.cmake * support static build
2019-08-20[libcopp] Update library to 1.2.0 (#7770)OWenT
2019-08-20make find_library useable without errors to console. (#7773)Alexander Neumann
2019-08-20[cgltf] Update library to 1.3 (#7774)Ehsan
2019-08-20[distorm] Update library to 3.4.1 (#7777)Ehsan
2019-08-20[clara] Update library to 1.1.5 (#7775)Ehsan
2019-08-20[nanort] Add new port (#7778)myd7349
2019-08-20[inih] Update library to 45 (#7780)Ehsan
2019-08-20[leaf] Update library to 0.2.2 (#7782)Ehsan
2019-08-19Merge pull request #7642 from sjdrc/patch-1Phil Christensen
[qt5]Only build qt5-activeqt on windows
2019-08-19[libfabric] Update library to 1.8.0 (#7755)Phil Christensen
2019-08-19[clp] Update library to 1.17.3 (#7756)Ehsan
2019-08-19[gdal]Fix dependent ports in static builds. (#7434)JackBoosY
2019-08-19[boost-modular-build-helper] Fix multiple compiler and linker options… (#7160)Igor Kostenko
* [boost-modular-build-helper] Fix multiple compiler and linker options support in boost
2019-08-20[libfabric] Update library to 1.8.0unknown
2019-08-19[vcpkg] allow multiple spaces in a comma list (#7754)Phil Christensen
2019-08-19Merge branch 'master' into path_separatorAlexander Neumann
2019-08-19Add guideline for VCPKG_<LANG>_FLAGS (#7751)Victor Romero
2019-08-19[libmorton] Update library to 0.2 (#7738)Ehsan
2019-08-19add variables for target specific library suffix and prefix. (#7600)Alexander Neumann
also set the according cmakevariables in script mode enabling find_library calls in portfiles
2019-08-19[libsvm] Add new port (#7664)myd7349
* [libsvm] Add new port * [libsvm] Add tools feature * [libsvm] Fix UWP build
2019-08-19[jsonnet]Upgrade version to 0.13.0 (#7374)JackBoosY
* [jsonnet]Upgrade version to 0.13.0 * [jsonnet]Use different commands depending on the version of powershell. * [jsonnet]Fix merge error.
2019-08-19[ffmpeg] Fix static linking on Windows, FindFFMPEG (#7739)Martin Kröning
This adds zlib as dependency to make it possible to find in FindFFMPEG.cmake. Also FFmpeg likes to autodetect zlib for additional features on compilation. This removes the check for stdint.h, as it is included since MSVC 2010 and does not always find it. To enable static linking on windows, bcript had to be added: avutil.lib(random_seed.o) : error LNK2019: unresolved external symbol _BCryptOpenAlgorithmProvider@16 referenced in function _av_get_random_seed avutil.lib(random_seed.o) : error LNK2019: unresolved external symbol _BCryptCloseAlgorithmProvider@8 referenced in function _av_get_random_seed avutil.lib(random_seed.o) : error LNK2019: unresolved external symbol _BCryptGenRandom@16 referenced in function _av_get_random_seed
2019-08-19[double-conversion] Update library to 3.1.5 (#7717)Ehsan
2019-08-16[vcpkg] Major tool CMakeLists.txt updatesNicole Mazzuca
- Add the "VCPKG_DEVELOPMENT_WARNINGS" flag - setting "WERROR" will also set this flag - This flag is set by default - on GCC/clang, this will pass '-Wall -Wextra -Wpedantic -Werror' - on GCC, this will additionally pass '-Wmissing-declarations' - on clang, this will additionally pass '-Wmissing-prototypes' - on MSVC, this will pass '-W4 -WX' - On Visual Studio 2017 and later, pass '-permissive-' - Change the source for fallout of these changes - add `format` subcommand - formats all C++ source and header files using clang-format - move `include/vcpkg-test/catch.h` to `include/catch2/catch.hpp` - pass CONFIGURE_DEPENDS to file(GLOB)
2019-08-16[open62541, duktape] Update hash for pip. (#7548)Lily
* [open62541, duktape] Update hash for pip. * [duktape] Fix build error on Linux * [open62541, duktape] Update download linkage for pip. * [open62541] Resolve conflict * [open62541] Resolve conflict * [open62541] Remove homepage
2019-08-16Fix building feature opencv halide (#7581)NiHoel
* Add feature halide to OpenCV. * Add dependency of opencv[halide] to opencv[dnn]. * Fix building opencv[halide]. * Only require opencv[dnn] not default features. * Migration to opencv4 port. * [opencv] Normalize line endings in CONTROL file * [opencv] Normalize line endings in CONTROL file
2019-08-16Merge pull request #7731 from ehsan-mohammadi/dev0Curtis J Bezault
[cgltf] Update library to 1.2