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 53ca2fb commit 76bcd04Copy full SHA for 76bcd04
.github/workflows/build.yml
@@ -216,6 +216,18 @@ jobs:
216
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
217
- uses: actions/checkout@v2
218
219
+ - name: Build raylib
220
+ run: |
221
+ cd raylib-c
222
+ mkdir build
223
+ cd build
224
+ cmake -DBUILD_EXAMPLES=off -DINCLUDE_EVERYTHING=on -DSUPPORT_FILEFORMAT_JPG=on -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release -DOpenGL_GL_PREFERENCE=GLVND ..
225
+ make -j2
226
+ make install
227
+ - name: Copy extras
228
229
+ cp physac/src/physac.h /usr/local/include/
230
+ cp raygui/src/raygui.h /usr/local/include/
231
232
- name: Build raylib-python-cffi
233
run: |
0 commit comments