updating license year, fixing fetch dependencies script, adding VMA auto update, removing useless dependency in xmake build

This commit is contained in:
2024-01-03 00:01:30 +01:00
parent e15aa45627
commit 0cba8d011e
10 changed files with 16 additions and 7 deletions

8
example/build.sh git.filemode.executable_file
View File

@@ -0,0 +1,8 @@
#!/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