diff options
| author | gingerBill <bill@gingerbill.org> | 2024-06-06 21:03:35 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-06-06 21:03:35 +0100 |
| commit | ff37a7435cbb794bdf4244f94e0abe820c8a8288 (patch) | |
| tree | 46815b8bcafa0b7d093c701861d858541bb73694 | |
| parent | d0dbe9a1bd3ca5187414e43f2cf804443e468f18 (diff) | |
Add parentheses around the foreign import paths
| -rw-r--r-- | vendor/raylib/raylib.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin index 6204f0bde..ebb1cdd27 100644 --- a/vendor/raylib/raylib.odin +++ b/vendor/raylib/raylib.odin @@ -118,8 +118,8 @@ when ODIN_OS == .Windows { } else when ODIN_OS == .Darwin { foreign import lib { "macos" + - "-arm64" when ODIN_ARCH == .arm64 else "" + - "/libraylib" + ".500.dylib" when RAYLIB_SHARED else ".a", + ("-arm64" when ODIN_ARCH == .arm64 else "") + + "/libraylib" + (".500.dylib" when RAYLIB_SHARED else ".a"), "system:Cocoa.framework", "system:OpenGL.framework", "system:IOKit.framework", |