Files
MacroLibX/test/run.sh
2023-12-12 17:58:49 +01:00

9 lines
206 B
Bash
Executable File

#!/bin/bash
echo "pouic $(uname -s)"
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