Merge pull request #12 from profelis/patch-1

Manually set c++11 standard
This commit is contained in:
Stefan Haustein 2017-07-13 14:37:45 +02:00 committed by GitHub
commit a9fb944a31

View File

@ -1,7 +1,7 @@
default: tiv
tiv.o: tiv.cpp CImg.h
g++ -Wall -fexceptions -O2 -c tiv.cpp -o tiv.o
g++ -std=c++11 -Wall -fexceptions -O2 -c tiv.cpp -o tiv.o
tiv : tiv.o
g++ tiv.o -o tiv -pthread -s