From 9cff49e09d2febb42346ad98106f0decd715a5f1 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 24 Aug 2021 20:36:57 +0900 Subject: [PATCH] Revert "Fix buildWin/Makefile" This reverts commit d4ff58db533d2a7e0216ab96f6c12f88a2116b29. A console window will probably be handy for the outputs that are text-only. --- example02_threaded_raytracing/buildWin/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example02_threaded_raytracing/buildWin/Makefile b/example02_threaded_raytracing/buildWin/Makefile index 0809acc..75ad497 100644 --- a/example02_threaded_raytracing/buildWin/Makefile +++ b/example02_threaded_raytracing/buildWin/Makefile @@ -4,7 +4,7 @@ CXXFLAGS=-O3 -DNDEBUG all: Example02.exe Example02.exe: ../src/main.o ../src/rayTracer.o ../src/argParse.o - $(CXX) -o Example02.exe -lpthread -Wl,-subsystem,windows $^ + $(CXX) -o Example02.exe -lpthread $^ .PHONY: