mirror of https://github.com/PCSX2/pcsx2.git
Buildbot: Revert to using the sln instead of the project file.
Bot does not like using the project directly.
This commit is contained in:
parent
b63590152a
commit
3dd3ed2602
13
buildbot.xml
13
buildbot.xml
|
@ -1,10 +1,14 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="ReleaseAll" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="ReleaseAll" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<!-- Add all the projects that use the non-standard configurations here. -->
|
||||||
|
<ItemGroup>
|
||||||
|
<TargetsSetCPU Include="plugins\GSdx"/>
|
||||||
|
</ItemGroup>
|
||||||
<!-- Add all the solutions here. -->
|
<!-- Add all the solutions here. -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<SolutionSet Include="$(MSBuildProjectDirectory)\PCSX2_suite.sln" />
|
<SolutionSet Include="$(MSBuildProjectDirectory)\PCSX2_suite.sln" />
|
||||||
<!--SolutionSet Include="$(MSBuildProjectDirectory)\old_plugins.sln" /-->
|
<!--SolutionSet Include="$(MSBuildProjectDirectory)\old_plugins.sln" /-->
|
||||||
<ProjectSetCPU Include="$(MSBuildProjectDirectory)\plugins\GSdx\GSdx.vcxproj" />
|
<ProjectSetCPU Include="$(MSBuildProjectDirectory)\PCSX2_suite.sln" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<!-- Add common build properties here. -->
|
<!-- Add common build properties here. -->
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
@ -41,14 +45,15 @@
|
||||||
<MSBuild Projects="@(ProjectSetCPU)" BuildInParallel="false" Properties="Configuration=%(ConfigCPU.Identity)" Targets="Clean" />
|
<MSBuild Projects="@(ProjectSetCPU)" BuildInParallel="false" Properties="Configuration=%(ConfigCPU.Identity)" Targets="Clean" />
|
||||||
<CallTarget Targets="CleanCruft" />
|
<CallTarget Targets="CleanCruft" />
|
||||||
<MSBuild Projects="@(SolutionSet)" BuildInParallel="false" Properties="Configuration=$(BaseConfiguration);$(CompileFastPlz)" Targets="Build" />
|
<MSBuild Projects="@(SolutionSet)" BuildInParallel="false" Properties="Configuration=$(BaseConfiguration);$(CompileFastPlz)" Targets="Build" />
|
||||||
<MSBuild Projects="@(ProjectSetCPU)" BuildInParallel="true" Properties="Configuration=%(ConfigCPU.Identity);BuildProjectReferences=false;$(CompileFastPlz);SolutionDir=$(MSBuildProjectDirectory)\" Targets="Build" />
|
<MSBuild Projects="@(ProjectSetCPU)" BuildInParallel="true" Properties="Configuration=%(ConfigCPU.Identity);BuildProjectReferences=false;$(CompileFastPlz)" Targets="@(TargetsSetCPU)" />
|
||||||
</Target>
|
</Target>
|
||||||
<Target Name="DebugAll">
|
<Target Name="DebugAll">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<BaseConfiguration>Debug</BaseConfiguration>
|
<BaseConfiguration>Debug</BaseConfiguration>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ConfigCPU Include="Debug AVX;Debug AVX2;Debug SSE4;Debug SSSE3"/>
|
<ConfigCPU Include="Debug"/>
|
||||||
|
<!--ConfigCPU Include="Debug AVX;Debug AVX2;Debug SSE4;Debug SSSE3"/-->
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
<Target Name="DevelAll">
|
<Target Name="DevelAll">
|
||||||
|
@ -56,7 +61,7 @@
|
||||||
<BaseConfiguration>Devel</BaseConfiguration>
|
<BaseConfiguration>Devel</BaseConfiguration>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ConfigCPU Include="Release AVX;Release AVX2;Release SSE4;Release SSSE3"/>
|
<ConfigCPU Include="Devel"/>
|
||||||
<!--ConfigCPU Include="Devel AVX;Devel AVX2;Devel SSE4;Devel SSSE3"/-->
|
<!--ConfigCPU Include="Devel AVX;Devel AVX2;Devel SSE4;Devel SSSE3"/-->
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
Loading…
Reference in New Issue