From e55d0b10546bbb69b8da6a5f7d1a8e63c4924133 Mon Sep 17 00:00:00 2001 From: aryeh Date: Fri, 20 Nov 2020 18:34:31 +1100 Subject: [PATCH] Cleaned up the window compilation command. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7f60c36..1f9d978 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ ifeq ($(OS), Windows_NT) # Build for Windows libPath = ./lib/Windows/libraylib_static.a buildfile = ./build/app - compileCommand = g++ -std=c++17 -I ./include/ -m64 -L./lib/Windows -L./include ./src/main.cpp -o $(buildfile) -lraylib -pthread -lopengl32 -lgdi32 -lwinmm -mwindows + compileCommand = g++ -std=c++17 -I ./include/ -L./lib/Windows ./src/main.cpp -o $(buildfile) -lraylib -pthread -lopengl32 -lgdi32 -lwinmm -mwindows else # Build for MacOS/Linux