summaryrefslogtreecommitdiff
path: root/render-vulkan/make.config
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-08-25 00:18:42 -0500
committerDanny Holman <dholman@gymli.org>2024-08-25 00:18:42 -0500
commit6b13ea53aeedb646b082a13bf16f67f8556087ae (patch)
tree7cf38f381a7af9daa9ad511c8f9abe58b41b119a /render-vulkan/make.config
parenta002576056e26673f0141e46786f44f0b9c90b70 (diff)
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 <dholman@gymli.org>
Diffstat (limited to 'render-vulkan/make.config')
-rw-r--r--render-vulkan/make.config7
1 files changed, 7 insertions, 0 deletions
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 \