make it so that you can like actually build this for windows

This commit is contained in:
2026-03-07 10:03:24 +10:00
parent 008ba541d8
commit ddaf8d1003

View File

@@ -1,4 +1,6 @@
run:
g++ *.c *.cpp -o main.exe -lglfw -lGL && ./app
run_linux:
g++ *.c *.cpp -o app -lglfw -lGL && ./app
run_windows:
g++ *.c *.cpp -o app.exe -lglfw -lGL && ./app.exe
build:
g++ *.c *.cpp -o app -lglfw -lGL
g++ *.c *.cpp -o app -lglfw -lGL && g++ *.c *.cpp -o main.exe -lglfw -lGL