diff options
| author | Pariatech <145340081+Pariatech@users.noreply.github.com> | 2024-03-13 07:37:42 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-13 07:37:42 -0400 |
| commit | b539bb26935a29a4c59b8d241f76eb352e94f839 (patch) | |
| tree | d2e58e070f021be93bce33a062d3faa65ac53328 | |
| parent | 89404147f65b1703f50f9d56cabf8752447cdb8c (diff) | |
Update vendor/cgltf/src/Makefile
missing darwin folder
Co-authored-by: Laytan <laytanlaats@hotmail.com>
| -rw-r--r-- | vendor/cgltf/src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/cgltf/src/Makefile b/vendor/cgltf/src/Makefile index d359c4739..ede3d158e 100644 --- a/vendor/cgltf/src/Makefile +++ b/vendor/cgltf/src/Makefile @@ -13,7 +13,7 @@ unix: rm *.o darwin: - mkdir -p ../lib + mkdir -p ../lib/darwin $(CC) -arch x86_64 -c -O2 -Os -fPIC cgltf.c -o cgltf-x86_64.o -mmacosx-version-min=10.12 $(CC) -arch arm64 -c -O2 -Os -fPIC cgltf.c -o cgltf-arm64.o -mmacosx-version-min=10.12 lipo -create cgltf-x86_64.o cgltf-arm64.o -output ../lib/darwin/cgltf.a |