diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3dd8823..471a3da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: runs-on: macos-12 strategy: matrix: - python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10' ] + python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10' ] raylib-platform: ['Desktop', 'SDL'] steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it diff --git a/raylib/build.py b/raylib/build.py index 9124d6f..bbce1e5 100644 --- a/raylib/build.py +++ b/raylib/build.py @@ -178,6 +178,8 @@ def build_unix(): '-lrt', '-lm', '-ldl', '-lX11', '-lpthread', '-latomic'] if RAYLIB_PLATFORM=="SDL": extra_link_args += ['-lSDL2'] + elif RAYLIB_PLATFORM=="DRM": + extra_link_args += ['-lEGL'] extra_compile_args = ["-Wno-incompatible-pointer-types", "-D_CFFI_NO_LIMITED_API"] libraries = [] # Not sure why but we put them in extra_link_args instead so *shouldnt* be needed here diff --git a/version.py b/version.py index 6c8159a..8543012 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -__version__ = "5.5.0.0.dev1" \ No newline at end of file +__version__ = "5.5.0.0.dev2" \ No newline at end of file