aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-08-21 13:32:07 +0100
committergingerBill <bill@gingerbill.org>2021-08-21 13:32:07 +0100
commitc8378fce9534535124b546d0e89c1c5334e20f07 (patch)
tree920eaa0133783859696680a80ab992b15d3db772 /src/main.cpp
parent2aaf927bebba52d13eaa5e14ead8556c62210d16 (diff)
Add library collection `vendor`
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b4dabcd25..062b52635 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2024,6 +2024,7 @@ int main(int arg_count, char const **arg_ptr) {
array_init(&library_collections, heap_allocator());
// NOTE(bill): 'core' cannot be (re)defined by the user
add_library_collection(str_lit("core"), get_fullpath_relative(heap_allocator(), odin_root_dir(), str_lit("core")));
+ add_library_collection(str_lit("vendor"), get_fullpath_relative(heap_allocator(), odin_root_dir(), str_lit("vendor")));
map_init(&build_context.defined_values, heap_allocator());
build_context.extra_packages.allocator = heap_allocator();