Skip to content

Commit fb3f3f9

Browse files
try
1 parent b8231d2 commit fb3f3f9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.cirrus.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ pi_task:
88
- image: dtcooper/raspberrypi-os:python3.11-bullseye
99
- image: dtcooper/raspberrypi-os:python3.10-bullseye
1010
- image: dtcooper/raspberrypi-os:python3.9-bullseye
11+
env:
12+
matrix:
13+
- RAYLIB_PLATFORM: "Desktop"
14+
- RAYLIB_PLATFORM: "SDL"
1115
setup_script:
1216
- apt update
1317
- apt -y install cmake libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev libwayland-dev libxkbcommon-dev

raylib/build.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ def build_unix():
169169
'-framework', 'IOKit', '-framework', 'CoreFoundation', '-framework',
170170
'CoreVideo']
171171
if USE_SDL2:
172-
extra_link_args += ['/usr/local/lib/libSDL2.a', '-framework', 'CoreHaptics']
172+
extra_link_args += ['/usr/local/lib/libSDL2.a', '-framework', 'CoreHaptics', '-framework', 'ForceFeedback',
173+
'-framework', 'GameController']
173174
libraries = []
174175
extra_compile_args = ["-Wno-error=incompatible-function-pointer-types", "-D_CFFI_NO_LIMITED_API"]
175176
else: #platform.system() == "Linux":

0 commit comments

Comments
 (0)