duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

BaseApplication.props (1014B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      3   <PropertyGroup Label="UserMacros">
      4     <IntDir>$(SolutionDir)build\$(ProjectName)-$(Platform)-$(Configuration)\</IntDir>
      5     <OutDir>$(SolutionDir)bin\$(Platform)\</OutDir>
      6     <GenerateProjectSpecificOutputFolder>false</GenerateProjectSpecificOutputFolder>
      7 
      8     <!-- Use MSVC suffix for MSVC builds, and remove the Clang suffix. -->
      9     <TargetName Condition="$(Configuration.EndsWith(Clang))">$(ProjectName)-$(Platform)-$(Configuration.Replace("-Clang", ""))</TargetName>
     10     <TargetName Condition="!$(Configuration.EndsWith(Clang))">$(ProjectName)-$(Platform)-$(Configuration)-MSVC</TargetName>
     11     <ConfigurationType>Application</ConfigurationType>
     12   </PropertyGroup>
     13 
     14   <Import Project="Toolkit.props" />
     15   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
     16   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
     17 
     18   <Import Project="Base.props" />
     19 </Project>