mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Fix miniaudio config; add trailing commas
This commit is contained in:
Vendored
+1
-1
@@ -9,7 +9,7 @@ when GLFW_SHARED {
|
|||||||
foreign import glfw {"_"}
|
foreign import glfw {"_"}
|
||||||
} else {
|
} else {
|
||||||
foreign import glfw {
|
foreign import glfw {
|
||||||
"lib/darwin/libglfw3.a"
|
"lib/darwin/libglfw3.a",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Vendored
+2
-2
@@ -9,14 +9,14 @@ when GLFW_SHARED {
|
|||||||
"lib/glfw3dll.lib",
|
"lib/glfw3dll.lib",
|
||||||
"system:user32.lib",
|
"system:user32.lib",
|
||||||
"system:gdi32.lib",
|
"system:gdi32.lib",
|
||||||
"system:shell32.lib"
|
"system:shell32.lib",
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
foreign import glfw {
|
foreign import glfw {
|
||||||
"lib/glfw3_mt.lib",
|
"lib/glfw3_mt.lib",
|
||||||
"system:user32.lib",
|
"system:user32.lib",
|
||||||
"system:gdi32.lib",
|
"system:gdi32.lib",
|
||||||
"system:shell32.lib"
|
"system:shell32.lib",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Vendored
+1
-1
@@ -2,7 +2,7 @@ package miniaudio
|
|||||||
|
|
||||||
import "core:c"
|
import "core:c"
|
||||||
|
|
||||||
MINIAUDIO_SHARED :: #config(MINIAUDIO_SHARED)
|
MINIAUDIO_SHARED :: #config(MINIAUDIO_SHARED, false)
|
||||||
|
|
||||||
when MINIAUDIO_SHARED {
|
when MINIAUDIO_SHARED {
|
||||||
#panic("Shared linking for miniaudio is not supported yet")
|
#panic("Shared linking for miniaudio is not supported yet")
|
||||||
|
|||||||
Reference in New Issue
Block a user