diff options
| author | Gerrit Swaneveld <[email protected]> | 2026-06-09 12:31:37 -0700 |
|---|---|---|
| committer | Gerrit Swaneveld <[email protected]> | 2026-06-09 12:31:37 -0700 |
| commit | 7406226311c363607c2eb0daabd3dcfcb63625bb (patch) | |
| tree | 60a4fca51ad87d4a8a5e80b17bf345bcaf8f568b /general/SimpleMediaSource/SimpleMediaSourceDriver/SimpleMediaSourceDriver.vcxproj | |
| parent | 13a99088c6cab533d32e6d084eedd3fe683a2a68 (diff) | |
Fix to use CPP20 for compiler
STD 17 used experimental coroutine. STD 20 uses standard C++. WinRT will inherit the coroutine automatically, so updating to STD 20 will fix this issue.
Diffstat (limited to 'general/SimpleMediaSource/SimpleMediaSourceDriver/SimpleMediaSourceDriver.vcxproj')
| -rw-r--r-- | general/SimpleMediaSource/SimpleMediaSourceDriver/SimpleMediaSourceDriver.vcxproj | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/general/SimpleMediaSource/SimpleMediaSourceDriver/SimpleMediaSourceDriver.vcxproj b/general/SimpleMediaSource/SimpleMediaSourceDriver/SimpleMediaSourceDriver.vcxproj index cca6b63a..422ac09a 100644 --- a/general/SimpleMediaSource/SimpleMediaSourceDriver/SimpleMediaSourceDriver.vcxproj +++ b/general/SimpleMediaSource/SimpleMediaSourceDriver/SimpleMediaSourceDriver.vcxproj @@ -59,10 +59,9 @@ <Configuration>Debug</Configuration> <Platform Condition="'$(Platform)' == ''">x64</Platform> <RootNamespace>SimpleMediaSourceDriver</RootNamespace> - <WindowsTargetPlatformVersion>$(LatestTargetPlatformVersion)</WindowsTargetPlatformVersion> </PropertyGroup> <PropertyGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> - <PlatformToolset>WindowsUserModeDriver10.0</PlatformToolset> + <PlatformToolset>v145</PlatformToolset> <ConfigurationType>DynamicLibrary</ConfigurationType> <DriverTargetPlatform>Universal</DriverTargetPlatform> </PropertyGroup> |
