removed flecs and setted up vulkan building

This commit is contained in:
Lorenzo Torres 2025-11-02 14:49:06 +01:00
parent 7be714b81f
commit 1f594fbed7
8 changed files with 24 additions and 127415 deletions

View file

@ -2,11 +2,14 @@
include config.mk
SRC:=topaz.c linear.c flecs.c
SRC:=topaz.c linear.c
ifeq (${BACKEND},gl)
SRC += gl/gl.c gl/platform.c
endif
ifeq (${BACKEND},vk)
SRC += vk/platform.c
endif
OBJ:=${SRC:.c=.o}