aboutsummaryrefslogtreecommitdiff
path: root/ports/sdl2-gfx
AgeCommit message (Collapse)Author
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` function Convert-Control { Param($full) .\vcpkg.exe format-manifest $full $root = $full.Substring(0, $full.Length - 7) # CONTROL $new = $root + 'vcpkg.json' $content = Get-Content -Raw $new $asJson = ConvertFrom-Json $content -AsHashtable -Depth 100 $oldVersion = $asJson['port-version'] if ($null -eq $oldVersion) { $oldVersionFull = $asJson['version-string'] Write-Host "Got version $oldVersionFull" $match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$') if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) { $newFullVersion = [string]$match.Groups[1].Value $oldVersion = [int]$match.Groups[2].Value Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion" $newVersion = $oldVersion + 1 $asJson['version-string'] = $newFullVersion Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion" } else { Write-Host "No previous version for $full -- setting 1" $newVersion = 1 } } else { $newVersion = [int]$oldVersion + 1 Write-Host "New version for $full : $newVersion" } $asJson['port-version'] = $newVersion $content = ConvertTo-Json $asJson -Depth 100 Set-Content -Path $new -Value $content .\vcpkg.exe format-manifest $new } Get-ChildItem ports\CONTROL -Recurse | Foreach-Object { Convert-Control $_.FullName } git commit -am "this message" .\vcpkg.exe x-add-version -all git commit -a --amend ```
2020-11-03[libsamplerate, sdl2-gfx] Fix build error with Visual Studio 2019 version ↵Lily
16.9 (#14348)
2020-04-24[sdl2-gfx] Fix build error on non windows (#10575)NancyLi1013
* [sdl2-gfx] Fix build error on non windows * Update as review suggestions * Updated to support osx
2020-01-27[sdl2-gfx] Fixed build error ARM64 Windows 10 (#9314)Tatsuro Shibamura
* [sdl2-gfx] Fixed build error ARM64 Windows 10 * [sdl2-gfx] Update CI baseline * [sdl2-gfx] Fixed function name * Revert ci.baseline.txt * Remove sdl2-gfx:arm64-windows from ci.baseline.txt Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2019-12-23[sdl2-gfx] Update CMake build and find_package support (#9319)David Katz
* [sdl2-gfx] Update CMake build and find_package support * Update build process to more closely mimic other SDL2 extensions * Bump CONTROL version number * Remove uneeded wrapper file * Remove uneeded wrapper file * [sdl2-gfx] Simplification. Add cmake find_dependency(SDL2). Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2019-07-31Add PREFER_NINJA to many ports (#7468)Phoebe
* Add PREFER_NINJA to many ports
2019-05-01Fix sdl2-gfx, sdl2-image, sdl2-mixer, sdl2-net, and sdl2-ttf forcing debug ↵Antonio Maiorano
lib first (SDL2d) (#5948) Prevent SDL2 dependent libraries from always linking against debug.
2019-03-11Update various SDL2-based libraries (#5623)Daniel
* [sdl2-gfx] Update to 1.0.4 * [sdl2-mixer] Update to 2.0.4 (#4934) * [sdl2-image] Update to 2.0.4 * [sdl2-ttf] Update to 2.0.15 * [sdl2-gfx,-image,-ttf] Use vcpkg_extract_source_archive_ex()
2017-10-19[sdl2-gfx][sdl2-image][sdl2-mixer][sdl2-net][sdl2-ttf] Fix accidental link ↵Robert Schumacher
of release libs in debug mode.
2017-09-09vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵Alexander Karatarakis
libs (/Z7)
2017-07-07[sdl2-gfx] Small cleanup, better support static linkingRobert Schumacher
2017-07-06initial port of sdl2_gfxDavid Nerjes