CMakeLists.txt works with mingw-cmake, removing buildWin/Makefile

This commit is contained in:
Stephen Seo 2021-08-25 11:19:14 +09:00
parent 8c554fece8
commit 5f42cf53b8

View file

@ -1,13 +0,0 @@
CXX=x86_64-w64-mingw32-g++
CXXFLAGS=-O3 -DNDEBUG
all: Example02.exe
Example02.exe: ../src/main.o ../src/rayTracer.o ../src/argParse.o
$(CXX) -o Example02.exe -lpthread $^
.PHONY:
clean:
rm -f Example02.exe
rm -f ../src/*.o