mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 14:43:34 +00:00
8 lines
179 B
Bash
Executable File
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
|