mirror of https://github.com/987123879113/pcsx2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
3.4 KiB
73 lines
3.4 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<Project DefaultTargets="ReleaseAll" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
<!-- Add all the solutions here. --> |
|
<ItemGroup> |
|
<SolutionSet Include="$(MSBuildProjectDirectory)\PCSX2_suite.sln" /> |
|
<!--SolutionSet Include="$(MSBuildProjectDirectory)\old_plugins.sln" /--> |
|
<ProjectSetCPU Include="$(MSBuildProjectDirectory)\PCSX2_suite.sln" /> |
|
</ItemGroup> |
|
<!-- Add common build properties here. --> |
|
<PropertyGroup> |
|
<CreateHardLinksIfPossible>true</CreateHardLinksIfPossible> |
|
<CompileFastPlz>BuildInParallel=True; |
|
CreateHardLinksForCopyFilesToOutputDirectoryIfPossible=$(CreateHardLinksIfPossible); |
|
CreateHardLinksForCopyAdditionalFilesIfPossible=$(CreateHardLinksIfPossible); |
|
CreateHardLinksForCopyLocalIfPossible=$(CreateHardLinksIfPossible); |
|
CreateHardLinksForPublishFilesIfPossible=$(CreateHardLinksIfPossible); |
|
</CompileFastPlz> |
|
</PropertyGroup> |
|
<PropertyGroup> |
|
<RetainDebuggingArtifacts Condition="'$(RetainDebuggingArtifacts)' == ''">false</RetainDebuggingArtifacts> |
|
</PropertyGroup> |
|
<!-- Add all the custom targets here. --> |
|
<Target Name="CleanBloat" AfterTargets="InternalBuild" Condition="'$(RetainDebuggingArtifacts)' == 'false'"> |
|
<ItemGroup> |
|
<BloatToDelete Include="$(MSBuildProjectDirectory)\bin\**\*.bsc"/> |
|
<BloatToDelete Include="$(MSBuildProjectDirectory)\bin\**\*.exp"/> |
|
<BloatToDelete Include="$(MSBuildProjectDirectory)\bin\**\*.ilk"/> |
|
<BloatToDelete Include="$(MSBuildProjectDirectory)\bin\**\*.iobj"/> |
|
<BloatToDelete Include="$(MSBuildProjectDirectory)\bin\**\*.ipdb"/> |
|
<BloatToDelete Include="$(MSBuildProjectDirectory)\bin\**\*.lib"/> |
|
<BloatToDelete Include="$(MSBuildProjectDirectory)\bin\**\*.pdb"/> |
|
</ItemGroup> |
|
<Delete Files="@(BloatToDelete)" /> |
|
</Target> |
|
<Target Name="CleanCruft"> |
|
<ItemGroup> |
|
<CruftToDelete Include="$(MSBuildProjectDirectory)\**\svnrev.h"/> |
|
<CruftToDelete Include="$(MSBuildProjectDirectory)\**\*.CppClean.log" /> |
|
</ItemGroup> |
|
<Delete Files="@(CruftToDelete)" /> |
|
</Target> |
|
<Target Name="InternalBuild" AfterTargets="DebugAll;DevelAll;ReleaseAll"> |
|
<MSBuild Projects="@(SolutionSet)" BuildInParallel="false" Properties="Configuration=$(BaseConfiguration)" Targets="Clean" /> |
|
<MSBuild Projects="@(ProjectSetCPU)" BuildInParallel="false" Properties="Configuration=%(ConfigCPU.Identity)" Targets="Clean" /> |
|
<CallTarget Targets="CleanCruft" /> |
|
<MSBuild Projects="@(SolutionSet)" BuildInParallel="false" Properties="Configuration=$(BaseConfiguration);$(CompileFastPlz)" Targets="Build" /> |
|
<MSBuild Projects="@(ProjectSetCPU)" BuildInParallel="true" Properties="Configuration=%(ConfigCPU.Identity);BuildProjectReferences=false;$(CompileFastPlz)" Targets="@(TargetsSetCPU)" /> |
|
</Target> |
|
<Target Name="DebugAll"> |
|
<PropertyGroup> |
|
<BaseConfiguration>Debug</BaseConfiguration> |
|
</PropertyGroup> |
|
<ItemGroup> |
|
<ConfigCPU Include="Debug AVX2;Debug"/> |
|
</ItemGroup> |
|
</Target> |
|
<Target Name="DevelAll"> |
|
<PropertyGroup> |
|
<BaseConfiguration>Devel</BaseConfiguration> |
|
</PropertyGroup> |
|
<ItemGroup> |
|
<ConfigCPU Include="Devel AVX2;Devel"/> |
|
</ItemGroup> |
|
</Target> |
|
<Target Name="ReleaseAll"> |
|
<PropertyGroup> |
|
<BaseConfiguration>Release</BaseConfiguration> |
|
</PropertyGroup> |
|
<ItemGroup> |
|
<ConfigCPU Include="Release AVX2;Release"/> |
|
</ItemGroup> |
|
</Target> |
|
</Project>
|
|
|