10 lines
398 B
Bash
Executable File
10 lines
398 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# this isnt meant to be guarenteed to work on whatever system
|
|
# the c compiler invokation just got really big
|
|
# works for my system, is a reference for you in the worst case
|
|
|
|
cd track_wrapper && zig build --release=fast && cd ..
|
|
|
|
clang -Wall -Wextra -pedantic -std=c99 -L/usr/local/lib -I/usr/local/include -I. raylib_frontend.c track_wrapper/zig-out/lib/libtrack_wrapper.a -lraylib -lm
|