From 47eb3ff9076469c5815f2ada32ff375fac80b825 Mon Sep 17 00:00:00 2001 From: Alessandro Mauri Date: Mon, 9 Jun 2025 15:50:29 +0200 Subject: [PATCH] moved vendor libraries to lib/ as a submodule --- .gitmodules | 4 ++++ lib/vendor | 1 + project.json | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) create mode 160000 lib/vendor diff --git a/.gitmodules b/.gitmodules index 487cebd..6d70ec6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -18,3 +18,7 @@ path = lib/sdl3.c3l url = https://git.alemauri.eu/alema/sdl3.c3l ignore = dirty +[submodule "lib/vendor"] + path = lib/vendor + url = https://github.com/c3lang/vendor + ignore = dirty diff --git a/lib/vendor b/lib/vendor new file mode 160000 index 0000000..db00622 --- /dev/null +++ b/lib/vendor @@ -0,0 +1 @@ +Subproject commit db006221a8af625630fdb8b56707f3d07d4314a2 diff --git a/project.json b/project.json index 2baa29d..c2216f9 100644 --- a/project.json +++ b/project.json @@ -1,7 +1,7 @@ { "langrev": "1", "warnings": ["no-unused"], - "dependency-search-paths": ["lib", "../../Programs/Source/c3-vendor/libraries"], + "dependency-search-paths": ["lib", "lib/vendor/libraries"], "dependencies": ["raylib55", "sdl3", "ugui"], "features": [], "authors": ["Alessandro Mauri "],