2021-08-13 22:35:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-02-08 21:06:35 +01:00
|
|
|
<!-- MSBuild config: autoimported by MSBuild +15 (VS +2017) early in the process, so should only contain certain defaults.
|
|
|
|
File is searched for relative to .vcxproj (upper dirs) and not .sln -->
|
2021-08-13 22:35:14 +02:00
|
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2023-02-08 21:06:35 +01:00
|
|
|
<!-- <Import Project="file.props" />-->
|
|
|
|
|
|
|
|
<ImportGroup Label="PropertySheets" />
|
|
|
|
|
2024-08-10 23:43:58 +02:00
|
|
|
<!-- size mismatch warnings, should rework stuff rather than castings all the time
|
|
|
|
(plus compilers can't detect code that logically can't lose precision, such as a clamped values) -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<NoWarn>C4267;C4244</NoWarn>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2023-02-08 21:06:35 +01:00
|
|
|
<PropertyGroup Label="Configuration">
|
2023-02-12 00:30:23 +01:00
|
|
|
<PlatformToolset>v143</PlatformToolset>
|
2023-02-08 21:06:35 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
|
|
|
<WholeProgramOptimization>false</WholeProgramOptimization>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
|
|
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
|
<PropertyGroup />
|
|
|
|
<ItemGroup />
|
2021-08-13 22:35:14 +02:00
|
|
|
</Project>
|