Files
MacroLibX/test/build.sh
2023-12-12 18:12:41 +01:00

9 lines
158 B
Bash
Executable File

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