From 6b13ea53aeedb646b082a13bf16f67f8556087ae Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Sun, 25 Aug 2024 00:18:42 -0500 Subject: core: refactor entire project root Reorganize the project root such that each subsystem is placed into its own subdirectory. This allows the build system to select which subsystems to enable for a particular build. Signed-off-by: Danny Holman --- render-vulkan/make.config | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 render-vulkan/make.config (limited to 'render-vulkan') diff --git a/render-vulkan/make.config b/render-vulkan/make.config new file mode 100644 index 0000000..1999079 --- /dev/null +++ b/render-vulkan/make.config @@ -0,0 +1,7 @@ +RENDER_LDFLAGS= +RENDER_LIBS=-lvulkan + +RENDER_OBJS=$(RENDERDIR)/vulkan_context.o \ + $(RENDERDIR)/vulkan_debug.o \ + $(RENDERDIR)/vulkan_device.o \ + $(RENDERDIR)/vulkan_swapchain.o \ -- cgit v1.2.3