1
0

Initial commit

This commit is contained in:
2021-10-15 22:14:57 +01:00
commit 604a8b3df8
7 changed files with 170 additions and 0 deletions

13
Hello_vulkan/Makefile Normal file
View File

@@ -0,0 +1,13 @@
CFLAGS = -std=c++17 -O2
LDFLAGS = -lglfw3 -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