This commit is contained in:
2024-11-25 11:06:35 +03:00
parent 5d59a15e36
commit fe876fccca
9 changed files with 20835 additions and 1 deletions

17
tests/Makefile Normal file
View File

@@ -0,0 +1,17 @@
all: graph_test entity_test rect2i
CFLAGS = -I../src/flecs/distr
CXXFLAGS = -I../src/flecs/distr -I../src/modules/stream/ui -I../src/godot -I../src/godot/platform/x11
graph_test: graph_module.o flecs.o
$(CXX) -o $@ graph_module.o flecs.o
entity_test: entity_test.o flecs.o
$(CXX) -o $@ entity_test.o flecs.o
flecs.o: ../src/flecs/distr/flecs.c
$(CC) -o $@ -c $<
rect2i: rect2i.o
$(CXX) -o $@ rect2i.o
.PHONY: all