We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 877fe35 commit 5758d8bCopy full SHA for 5758d8b
.cirrus.yml
@@ -0,0 +1,20 @@
1
+macos_instance:
2
+ image: ghcr.io/cirruslabs/macos-monterey-xcode:latest
3
+
4
+task:
5
+ build_raylib_script:
6
+ - git submodule update --init --recursive
7
+ - cd raylib-c
8
+ - mkdir build
9
+ - cd build
10
+ - cmake -DBUILD_EXAMPLES=off -DINCLUDE_EVERYTHING=on -DSUPPORT_FILEFORMAT_JPG=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
11
+ - make -j2
12
+ - sudo make install
13
+ build_script:
14
+ - sudo cp physac/src/physac.h /usr/local/include/
15
+ - sudo cp raygui/src/raygui.h /usr/local/include/
16
+ - python -m pip install --upgrade pip
17
+ - pip3 install cffi
18
+ - pip3 install setuptools
19
+ - pip3 install wheel
20
+ - python setup.py bdist_wheel
0 commit comments