Files
MacroLibX/test/run.sh

8 lines
179 B
Bash
Executable File

#!/bin/bash
if [ $(uname -s) = 'Darwin' ]; then
clang main.c ../libmlx.dylib -L /opt/homebrew/lib -lSDL2 -g && ./a.out;
else
clang main.c ../libmlx.so -lSDL2 -g && ./a.out;
fi