mirror of
https://github.com/stenzek/duckstation.git
synced 2026-07-11 01:24:11 +02:00
cdf6d5bd29
Decouple from the repository. Less CI time, and faster building of older commits.
17 lines
712 B
XML
17 lines
712 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
<PlatformToolset Condition="!$(Configuration.Contains(Clang))">v145</PlatformToolset>
|
|
<PlatformToolset Condition="$(Configuration.Contains(Clang))">ClangCL</PlatformToolset>
|
|
<SpectreMitigation>false</SpectreMitigation>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="$(Configuration.Contains(Debug))">
|
|
<UseDebugLibraries>true</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="!$(Configuration.Contains(Debug))">
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
</PropertyGroup>
|
|
</Project>
|