llama-cpp-turboquant/Makefile
Alejandro Saucedo ae12be78db Initial commit
2020-07-30 06:28:04 +01:00

18 lines
261 B
Makefile

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;