diff options
| author | nicole mazzuca <mazzucan@outlook.com> | 2020-08-06 17:04:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-06 17:04:47 -0700 |
| commit | 40c8aab459f6692f68daa0ef431b80ca7ab364c1 (patch) | |
| tree | d49c575bd7be93b2522293e5d54a7ce743b08355 /toolsrc/windows-bootstrap/dirs.proj | |
| parent | 61c055a6fcfee2a7e764997bb2478adf49db6edf (diff) | |
| download | vcpkg-40c8aab459f6692f68daa0ef431b80ca7ab364c1.tar.gz vcpkg-40c8aab459f6692f68daa0ef431b80ca7ab364c1.zip | |
[vcpkg] Fix vs2015 build (#12789)
* move windows bootstrap directory
* fix paths
* actually fix the build
* fix path
Diffstat (limited to 'toolsrc/windows-bootstrap/dirs.proj')
| -rw-r--r-- | toolsrc/windows-bootstrap/dirs.proj | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/toolsrc/windows-bootstrap/dirs.proj b/toolsrc/windows-bootstrap/dirs.proj new file mode 100644 index 000000000..960374bff --- /dev/null +++ b/toolsrc/windows-bootstrap/dirs.proj @@ -0,0 +1,20 @@ +<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir> + </PropertyGroup> + <ItemGroup> + <ProjectFile Include="vcpkglib\vcpkglib.vcxproj"/> + <ProjectFile Include="vcpkg\vcpkg.vcxproj"/> + <ProjectFile Include="vcpkgmetricsuploader\vcpkgmetricsuploader.vcxproj" Condition="'$(DISABLE_METRICS)'!='1'"/> + </ItemGroup> + + <Target Name="Rebuild" DependsOnTargets="Clean;Build" /> + + <Target Name="Build"> + <MSBuild Projects="@(ProjectFile)" Properties="SolutionDir=$(SolutionDir)" Targets="Build"/> + </Target> + + <Target Name="Clean"> + <MSBuild Projects="@(ProjectFile)" Properties="SolutionDir=$(SolutionDir)" Targets="Clean"/> + </Target> +</Project>
\ No newline at end of file |
