summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-02-28 22:33:58 -0500
committerJonathan Bradley <jcb@pikum.xyz>2025-02-28 22:33:58 -0500
commit37347bf7811a5fa42c98e2a19adfee15252ee479 (patch)
tree70fe178ad777f52404f51b90c06b8d14ef101276 /Makefile
parent85bbecbdebf4f096418aea1cd4f9616f9d97e451 (diff)
pke: checkpoint: vk renames + first-pass ui
Renamed pipeline and descriptor names to be more self-descriptive. UI work is not done, and will not record. Needs vulkan items created (buffers).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 402d699..2017b25 100644
--- a/Makefile
+++ b/Makefile
@@ -50,6 +50,7 @@ SRC = \
src/project-settings.cpp \
src/static-cube.cpp \
src/static-plane.cpp \
+ src/static-ui.cpp \
src/thread-pool.cpp \
src/vendor-cgltf-include.cpp \
src/vendor-stb-image-include.c \
@@ -63,6 +64,8 @@ DST_SHADERS = \
$(DIR_OBJ)/shaders/present.frag.spv \
$(DIR_OBJ)/shaders/glyph.vert.spv \
$(DIR_OBJ)/shaders/glyph.frag.spv \
+ $(DIR_OBJ)/shaders/ui-base.vert.spv \
+ $(DIR_OBJ)/shaders/ui-base.frag.spv \
SRC_C = $(filter %.c,$(SRC))
SRC_CXX = $(filter %.cpp,$(SRC))