forked from AbleOS/holey-bytes
58479deca1
also adding the raylib example Signed-off-by: Jakub Doka <jakub.doka2@gmail.com>
5 lines
146 B
Bash
Executable file
5 lines
146 B
Bash
Executable file
#!/bin/bash
|
|
DIR=$(dirname $0)
|
|
cd $DIR
|
|
cargo run -p hbc main.hb > out.o && gcc -o main out.o -lraylib -lm -ldl -lpthread -lrt -lGL -lX11 && ./main
|