moving experimental features to a new folder

This commit is contained in:
Kbz-8
2024-12-04 18:34:53 +01:00
parent e1add20315
commit 5a04ad7781
9 changed files with 126 additions and 32 deletions

11
experimental/RenderToTexture/build.sh git.filemode.executable_file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
if [ -e a.out ]; then
rm a.out
fi
if [ $(uname -s) = 'Darwin' ]; then
clang main.c ../../libmlx.dylib -L /opt/homebrew/lib -lSDL2 -g;
else
clang main.c ../../libmlx.so -lSDL2 -g -Wall -Wextra -Werror;
fi