File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,16 @@ pi_task:
30
30
- cd raylib-c
31
31
- mkdir build
32
32
- cd build
33
- - cmake -DPLATFORM=${RAYLIB_PLATFORM} -DOPENGL_VERSION=2.1 - DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release ..
33
+ - cmake -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release ..
34
34
- make -j2
35
35
- make install
36
+ build_raylib_again_script :
37
+ - cd raylib-c
38
+ - mkdir build2
39
+ - cd build2
40
+ - cmake -DPLATFORM=${RAYLIB_PLATFORM} -DBUILD_EXAMPLES=OFF -DCUSTOMIZE_BUILD=ON -DSUPPORT_FILEFORMAT_JPG=ON -DSUPPORT_FILEFORMAT_FLAC=ON -DWITH_PIC=ON -DCMAKE_BUILD_TYPE=Release ..
41
+ - make -j2
42
+ - sudo cp raylib/libraylib.a /usr/local/lib/libraylib.a
36
43
build_script :
37
44
- cp -r raylib-c/src/external/glfw/include/GLFW /usr/local/include/
38
45
- cp physac/src/physac.h /usr/local/include/
Original file line number Diff line number Diff line change @@ -60,6 +60,9 @@ Older MacOS requires building from source but this is usually simple:
60
60
brew install raylib
61
61
python3 -m pip install raylib==5.0.0.4
62
62
63
+ (I do have binaries for arm64 MacOS 11, 12 and 13 but I have no way of testing they work, so post an issue
64
+ if you want to test them.)
65
+
63
66
## Linux
64
67
65
68
Binaries require OS newer than Ubuntu 2020, x64 or arm64. Otherwise build from source.
You can’t perform that action at this time.
0 commit comments