agnos 18.1.2 + raylib 6.0 (#37997)

* raylib 6

* uv lock

* one more time
This commit is contained in:
Adeeb Shihadeh
2026-05-10 17:19:33 -07:00
committed by GitHub
parent 6b6b7f0f33
commit 93ed08ba20
21 changed files with 233 additions and 16066 deletions
+6 -6
View File
@@ -1,4 +1,6 @@
from pathlib import Path
import importlib.util
Import('env', 'arch', 'common')
# build the fonts
@@ -18,15 +20,13 @@ env.Command(
if GetOption('extras') and arch == "larch64":
# build installers
raylib_dir = Path(importlib.util.find_spec("raylib").submodule_search_locations[0]) / "install"
raylib_env = env.Clone()
raylib_env['LIBPATH'] += [f'#third_party/raylib/{arch}/']
raylib_env['CPPPATH'] += [str(raylib_dir / "include")]
raylib_env['LIBPATH'] += [str(raylib_dir / "lib")]
raylib_env['LINKFLAGS'].append('-Wl,-strip-debug')
raylib_libs = common + ["raylib"]
if arch == "larch64":
raylib_libs += ["GLESv2", "EGL", "gbm", "drm"]
else:
raylib_libs += ["GL"]
raylib_libs = common + ["raylib_comma", "GLESv2", "EGL", "gbm", "drm"]
release = "release3"
installers = [