aboutsummaryrefslogtreecommitdiff
path: root/ports/opengl
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-12-01[opengl] port path fix when crosscompiling (#14724)Nemirtingas
* Update portfile to use native file path. Fixes cross-compilation paths. * Update portfile.cmake * Update CONTROL * Update ports/opengl/CONTROL Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2020-07-06[opengl wincrypt winsock2] Use $ENV{WindowsSdkDir} instead of hard coding ↵Billy O'Neal
Windows SDK paths. (#12232) Also delete vcpkg_get_program_files_32_bit because it was used in only one place. Resolves #8288 Obsoletes #11421, #11261, #8329
2020-05-15[OpenGL] Fix lib files copy when VCPKG_BUILD_TYPE is set (#11294)Vitalii Koshura
* [OpenGL] Fix lib files copy when VCPKG_BUILD_TYPE is set Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com> * Change from release -> "release" in CMake if Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2019-09-11Linux support for the OpenCL SDK package (#4204)Nagy-Egri Máté Ferenc
Enable building OpenCL libraries on Linux and macOS.
2018-03-23[opengl] If-def on Windows vs otherAlexander Karatarakis
2018-03-21[opengl] Fix error message when WindowsSDK cannot be foundAlexander Karatarakis
2018-01-25license has been removed from SDK 16299 default installation, use a link as ↵Stefano Sinigardi
a copyright notice like 8.1 sdk
2017-11-10add GlU32.lib to OpenGL portStefano Sinigardi
2017-09-29[opengl] Rename portfile variableAlexander Karatarakis
2017-02-24[opengl] Add branch for Windows 8.1 SDKAlexander Karatarakis
2017-02-21[opengl] Add -ExecutionPolicy Bypass when invoking powershell as a childRobert Schumacher
process.
2017-02-21[opengl] Use the latest installed version of WinSDKAlexander Karatarakis
Resolves #697, #99
2016-09-20[opengl] Remove call to vcpkg_copy_pdbsRobert Schumacher
2016-09-18Initial commitAlexander Karatarakis