This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
raylib-python-cffi/build_raygui.sh
2021-10-08 01:19:28 +01:00

5 lines
215 B
Bash
Executable file

#!/usr/bin/env bash
cd raygui-c
cp src/raygui.h src/raygui.c
gcc -c -o raygui.o src/raygui.c -fpic -DRAYGUI_IMPLEMENTATION -DRAYGUI_SUPPORT_ICONS -lraylib -lGL -lm -lpthread -ldl -lrt -lX11
ar rcs raygui.a raygui.o