fix warning

This commit is contained in:
2025-08-23 15:12:21 -04:00
parent b62d6b1a61
commit a2bc8dd002
6 changed files with 50 additions and 10 deletions

View File

@@ -113,5 +113,16 @@ int create_project(manifest_t manifest)
abort();
}
if (manifest.libraries.ncurses)
system("git submodule add --quiet https://github.com/mirror/ncurses");
if (manifest.libraries.raylib)
system("git submodule add --quiet https://github.com/raysan5/raylib");
if (manifest.libraries.stb)
system("git submodule add --quiet https://github.com/nothings/stb");
if (manifest.libraries.uthash)
system("git submodule add --quiet https://github.com/troydhanson/uthash");
if (manifest.libraries.linenoise)
system("git submodule add --quiet https://github.com/antirez/linenoise");
return 0;
}