diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2018-10-30 16:40:38 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2018-11-01 01:26:31 -0700 |
| commit | 5a1a75d2d6bb27675bca2f009c7ae5579e84cea7 (patch) | |
| tree | 11aeaf69c11d01fc2d2303c77de45f2bce2bad96 /scripts | |
| parent | 0ad199727ed99d6e3a08c8d16f345262c7031922 (diff) | |
| download | vcpkg-5a1a75d2d6bb27675bca2f009c7ae5579e84cea7.tar.gz vcpkg-5a1a75d2d6bb27675bca2f009c7ae5579e84cea7.zip | |
[vcxproj] Explicitly specify intermediate and output directories
Avoids case-sensitivity issues, flattens the layout, no Win32 but x86 instead
Issue #4586
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/bootstrap.ps1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bootstrap.ps1 b/scripts/bootstrap.ps1 index 7ebbb2930..216e3fb09 100644 --- a/scripts/bootstrap.ps1 +++ b/scripts/bootstrap.ps1 @@ -328,7 +328,7 @@ if ($disableMetrics) } $platform = "x86" -$vcpkgReleaseDir = "$vcpkgSourcesPath\release" +$vcpkgReleaseDir = "$vcpkgSourcesPath\msbuild.x86.release" if ($win64) { @@ -339,7 +339,7 @@ if ($win64) } $platform = "x64" - $vcpkgReleaseDir = "$vcpkgSourcesPath\x64\release" + $vcpkgReleaseDir = "$vcpkgSourcesPath\msbuild.x64.release" } $arguments = ( |
