We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43bbcfc commit 03df781Copy full SHA for 03df781
xmake.lua
@@ -104,8 +104,13 @@ target("GrnGame")
104
set_policy("build.optimization.lto", true)
105
end
106
107
- -- causes linking problem if we enable them and doesnt really matters
108
- add_defines("DAS_SMART_PTR_MAGIC=0", "DAS_SMART_PTR_TRACKER=0", { public = true })
+ add_defines(
+ -- causes linking problem if we enable them and doesnt really matters
109
+ "DAS_SMART_PTR_MAGIC=0",
110
+ "DAS_SMART_PTR_TRACKER=0",
111
+ -- force it so vec2s has x and y members instead of an array
112
+ "CGLM_USE_ANONYMOUS_STRUCT",
113
+ { public = true })
114
115
add_packages(
116
"libsdl3",
0 commit comments