tests
This commit is contained in:
17
tests/Makefile
Normal file
17
tests/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user