Initial commit

This commit is contained in:
Alejandro Saucedo 2020-07-30 06:28:04 +01:00
parent 2879d3d274
commit ae12be78db
401 changed files with 158781 additions and 0 deletions

18
Makefile Normal file
View file

@ -0,0 +1,18 @@
build:
/c/Users/axsau/scoop/apps/gcc/current/bin/g++.exe \
-std=c++17 \
-c src/main.cpp \
-I"./external" \
-I"C:\\VulkanSDK\\1.2.141.2\\Include" \
-L"C:\\VulkanSDK\\1.2.141.2\\Lib\\vulkan-1.lib" \
-o main.exe
clean:
rm ./game;
run:
./game;