Fix buildWin/Makefile

This commit is contained in:
Stephen Seo 2021-08-24 20:33:16 +09:00
parent a34cec881d
commit d4ff58db53

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 $^
$(CXX) -o Example02.exe -lpthread -Wl,-subsystem,windows $^
.PHONY: