SoftLK-lib/lib/build_linux.sh
Captain4LK 3d95b505bd Added dynamic windows sizes (resizable windows)
More layer manipulation
Added resize example showing how to use new laywer features
Updated README.m
Bugfixes
2020-05-10 21:21:10 +02:00

9 lines
135 B
Bash
Executable file

#!/bin/bash
cd "$(dirname "$0")"
gcc -O3 -c ../src/*/*.c -lm -lSDL2 -ldl -lGL -Wall -Warray-bounds
ar cr libSLK.a *.o
exit
/bin/bash