Skip to content

Commit

Permalink
winrt: Disabled Windows Phone 8.0 builds.
Browse files Browse the repository at this point in the history
It lacks APIs we need for WASAPI and probably no one will miss it. 8.1 is
still supported.
  • Loading branch information
icculus committed Dec 31, 2017
1 parent 791c0dd commit c0c3056
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build-scripts/winrtbuild.ps1
Expand Up @@ -211,9 +211,11 @@ function Build-SDL-WinRT-Variant
$DidAnyDLLBuildFail = $false
$DidAnyNugetBuildFail = $false

# Ryan disabled WP8.0, because it doesn't appear to have mmdeviceapi.h that SDL_wasapi needs.
# My assumption is that no one will miss this, but send patches otherwise! --ryan.
# Build for Windows Phone 8.0, via VC++ 2012:
if ( ! (Build-SDL-WinRT-Variant "SDL" "v110_wp80" "ARM")) { $DidAnyDLLBuildFail = $true }
if ( ! (Build-SDL-WinRT-Variant "SDL" "v110_wp80" "Win32")) { $DidAnyDLLBuildFail = $true }
#if ( ! (Build-SDL-WinRT-Variant "SDL" "v110_wp80" "ARM")) { $DidAnyDLLBuildFail = $true }
#if ( ! (Build-SDL-WinRT-Variant "SDL" "v110_wp80" "Win32")) { $DidAnyDLLBuildFail = $true }

# Build for Windows Phone 8.1, via VC++ 2013:
if ( ! (Build-SDL-WinRT-Variant "SDL" "v120_wp81" "ARM")) { $DidAnyDLLBuildFail = $true }
Expand Down

0 comments on commit c0c3056

Please sign in to comment.