mirror of
https://github.com/odin-lang/Odin.git
synced 2026-07-15 20:30:31 +00:00
Merge pull request #7028 from EliasEbner/fix-vendor-import-paths
fixed the import paths for raylib and rlgl.
This commit is contained in:
2
vendor/raylib/raylib.odin
vendored
2
vendor/raylib/raylib.odin
vendored
@@ -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",
|
||||
|
||||
2
vendor/raylib/rlgl/rlgl.odin
vendored
2
vendor/raylib/rlgl/rlgl.odin
vendored
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user