added vector inline to hopefully make caching work for the entity component system

This commit is contained in:
herbglitch 2025-03-13 19:22:27 -06:00
parent ccf13ba470
commit ba09aff914
7 changed files with 482 additions and 2 deletions

View file

@ -78,6 +78,7 @@ set(ARCHEUS_SOURCES
src/std/string.c
src/std/time.c
src/std/vector.c
src/std/vector/inline.c
src/math/circle.c
src/math/obround.c
@ -129,7 +130,7 @@ if(ARCHEUS_TESTS)
add_executable(tests
tests/test.c
tests/std/config.c
#tests/std/config.c
#tests/std/entity.c
#tests/std/hashtable.c
#tests/std/lexer.c
@ -137,6 +138,7 @@ if(ARCHEUS_TESTS)
#tests/std/parser/csv.c
#tests/std/parser/parserlang.c
#tests/std/vector.c
tests/std/vector/inline.c
${ARCHEUS_SOURCES}
)