Compare commits

..

2 Commits

6 changed files with 9 additions and 1 deletions

4
.gitmodules vendored
View File

@ -18,3 +18,7 @@
path = lib/sdl3.c3l path = lib/sdl3.c3l
url = https://git.alemauri.eu/alema/sdl3.c3l url = https://git.alemauri.eu/alema/sdl3.c3l
ignore = dirty ignore = dirty
[submodule "lib/vendor"]
path = lib/vendor
url = https://github.com/c3lang/vendor
ignore = dirty

View File

@ -1,3 +1,4 @@
all: all:
make -C thirdparty/libgrapheme make -C thirdparty/libgrapheme
mkdir -p linux-x64
cp thirdparty/libgrapheme/libgrapheme.a linux-x64/libgrapheme.a cp thirdparty/libgrapheme/libgrapheme.a linux-x64/libgrapheme.a

View File

@ -1,4 +1,5 @@
all: thirdparty/mini-qoi/mqoi.a all: thirdparty/mini-qoi/mqoi.a
mkdir -p linux-x64
cp thirdparty/mini-qoi/mqoi.a linux-x64/libmqoi.a cp thirdparty/mini-qoi/mqoi.a linux-x64/libmqoi.a
thirdparty/mini-qoi/mqoi.a: thirdparty/mini-qoi/mqoi.a:

View File

@ -1,3 +1,4 @@
all: all:
make -C thirdparty/libschrift make -C thirdparty/libschrift
mkdir -p linux-x64
cp thirdparty/libschrift/libschrift.a linux-x64/libschrift.a cp thirdparty/libschrift/libschrift.a linux-x64/libschrift.a

1
lib/vendor Submodule

@ -0,0 +1 @@
Subproject commit db006221a8af625630fdb8b56707f3d07d4314a2

View File

@ -1,7 +1,7 @@
{ {
"langrev": "1", "langrev": "1",
"warnings": ["no-unused"], "warnings": ["no-unused"],
"dependency-search-paths": ["lib", "../../Programs/Source/c3-vendor/libraries"], "dependency-search-paths": ["lib", "lib/vendor/libraries"],
"dependencies": ["raylib55", "sdl3", "ugui"], "dependencies": ["raylib55", "sdl3", "ugui"],
"features": [], "features": [],
"authors": ["Alessandro Mauri <ale@shitposting.expert>"], "authors": ["Alessandro Mauri <ale@shitposting.expert>"],