-
-
Notifications
You must be signed in to change notification settings - Fork 419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add libsdl3 #6225
base: dev
Are you sure you want to change the base?
Add libsdl3 #6225
Conversation
actions/runner-images#10980 (comment)
Either swapping win SDK ver either swapping ninja ver helped them as well it seems, what is really confusing to understand what was exactly a solution. on_load(function (package)
if package:is_plat("windows") then
package:add("deps", "ninja")
package:set("policy", "package.cmake_generator.ninja", true)
end Maybe we miss |
I don't think it's the best way to fix this since some users will have 2022 CI as well. |
if the new package name is |
Yes indeed, the next step is to rename libsdl to libsdl2 and keep a libsdl package using libsdl2 as a base, like this: package("libsdl")
set_base("libsdl2")
on_load(function (package)
wprint("libsdl package has been renamed to libsdl2 following the release of SDL3 which is also available under the name libsdl3.${clear}")
end) |
#6156
I took the libsdl package and removed all deprecated stuff, I may have missed some things though.