mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-12 03:43:58 +08:00
c898283a41
* [vcpkg registries] support versions This PR merges the Registries changes and the versioning changes, so that one can use both at the same time. There is one major difference between this PR and the RFC (#13590), which is that instead of version files looking like: ```json [ ... ] ``` version files look like: ``` { "versions": [ ... ] } ``` this is to support interop between this PR and existing demos and the like; fixing this, along with perhaps renaming `port_versions` to `port-versions` should be done after this is merged, should be a trivial change.
12 lines
405 B
PowerShell
12 lines
405 B
PowerShell
. $PSScriptRoot/../end-to-end-tests-prelude.ps1
|
|
|
|
##### Test spaces in the path
|
|
$Script:CurrentTest = "zlib with spaces in path"
|
|
Write-Host $Script:CurrentTest
|
|
./vcpkg install zlib "--triplet" $Triplet `
|
|
"--no-binarycaching" `
|
|
"--x-buildtrees-root=$TestingRoot/build Trees" `
|
|
"--x-install-root=$TestingRoot/instalL ed" `
|
|
"--x-packages-root=$TestingRoot/packaG es"
|
|
Throw-IfFailed
|