Initial commit

This commit is contained in:
2026-02-20 01:08:15 +00:00
commit eb79d538de
5 changed files with 59 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
CFLAGS = -std=c++17 -O2
LDFLAGS = -lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi
VulkanTest: main.cpp
g++ $(CFLAGS) -o VulkanTest main.cpp $(LDFLAGS)
.PHONY: test clean
test: VulkanTest
./VulkanTest
clean:
rm -f VulkanTest