Revert "Fix buildWin/Makefile"

This reverts commit d4ff58db53.

A console window will probably be handy for the outputs that are
text-only.
This commit is contained in:
Stephen Seo 2021-08-24 20:36:57 +09:00
parent d4ff58db53
commit 9cff49e09d

View file

@ -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: