Merge pull request #7028 from EliasEbner/fix-vendor-import-paths

fixed the import paths for raylib and rlgl.
This commit is contained in:
Jeroen van Rijn
2026-07-14 09:46:43 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -115,7 +115,7 @@ when ODIN_OS == .Windows {
// multiple copies of raylib.so, but since these bindings are for
// particular version of the library, I better specify it. Ideally,
// though, it's best specified in terms of major (.so.4)
"linux-arm64/libraylib.so.600" when RAYLIB_SHARED else "linux-arm/libraylib.a",
"linux-arm64/libraylib.so.600" when RAYLIB_SHARED else "linux-arm64/libraylib.a",
"system:dl",
"system:pthread",
"system:X11",

View File

@@ -135,7 +135,7 @@ when ODIN_OS == .Windows {
// multiple copies of raylib.so, but since these bindings are for
// particular version of the library, I better specify it. Ideally,
// though, it's best specified in terms of major (.so.4)
"../linux-arm64/libraylib.so.600" when RAYLIB_SHARED else "../linux-arm/libraylib.a",
"../linux-arm64/libraylib.so.600" when RAYLIB_SHARED else "../linux-arm64/libraylib.a",
"system:dl",
"system:pthread",
"system:X11",