Skip to content
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

Merged
merged 35 commits into from
Feb 4, 2025
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
4749df9
Add libsdl3
SirLynix Jan 23, 2025
b19efba
Update xmake.lua
SirLynix Jan 23, 2025
0793388
Update xmake.lua
SirLynix Jan 23, 2025
a465c81
Update xmake.lua
SirLynix Jan 24, 2025
b2cdc39
Update xmake.lua
SirLynix Jan 25, 2025
ae93bfd
Update xmake.lua
SirLynix Jan 28, 2025
df875c6
Update xmake.lua
SirLynix Jan 28, 2025
72d2522
Update xmake.lua
SirLynix Jan 28, 2025
a388ff4
Update xmake.lua
SirLynix Jan 31, 2025
91eae42
Update xmake.lua
SirLynix Jan 31, 2025
c791824
Update xmake.lua
SirLynix Feb 1, 2025
d09d5f0
Update xmake.lua
SirLynix Feb 2, 2025
1f789f3
Update xmake.lua
SirLynix Feb 2, 2025
e0de0b0
Update xmake.lua
SirLynix Feb 2, 2025
3676065
Update xmake.lua
SirLynix Feb 2, 2025
89c556b
Update xmake.lua
SirLynix Feb 2, 2025
c8ebd53
Update xmake.lua
SirLynix Feb 2, 2025
d23f3ff
Update xmake.lua
SirLynix Feb 2, 2025
cbeec59
Update xmake.lua
SirLynix Feb 2, 2025
a0855ac
Merge branch 'dev' into SirLynix-patch-2
SirLynix Feb 3, 2025
552a727
Update xmake.lua
SirLynix Feb 3, 2025
a075453
Update xmake.lua
SirLynix Feb 3, 2025
100f785
Update xmake.lua
SirLynix Feb 3, 2025
44425f4
Update xmake.lua
SirLynix Feb 3, 2025
d3cd88d
Update xmake.lua
SirLynix Feb 3, 2025
2a4d4b4
Try to enable x11 on cross
SirLynix Feb 3, 2025
5f7d144
Update xmake.lua
SirLynix Feb 3, 2025
6d2afbc
Update xmake.lua
SirLynix Feb 3, 2025
02eda2c
Update xmake.lua
SirLynix Feb 3, 2025
3c05207
Update xmake.lua
SirLynix Feb 3, 2025
9437af4
Update xmake.lua
SirLynix Feb 3, 2025
79218fc
Update xmake.lua
SirLynix Feb 3, 2025
4661fa4
Update xmake.lua
SirLynix Feb 4, 2025
9b14fb8
Update xmake.lua
SirLynix Feb 4, 2025
d400889
Update xmake.lua
SirLynix Feb 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/l/libsdl3/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ package("libsdl3")
if #includedirs > 0 then
includedirs = table.unique(includedirs)
table.insert(configs, "-DCMAKE_INCLUDE_PATH=" .. table.concat(includedirs, ";"))
cflags = cflags or {}
for _, includedir in impairs(includedirs) do
SirLynix marked this conversation as resolved.
Show resolved Hide resolved
table.insert(cflags, "-I" .. includedir)
end
end

import("package.tools.cmake").install(package, configs, {cflags = cflags})
Expand Down
Loading