C++ version added

This commit is contained in:
stefan.haustein@gmail.com
2017-07-11 21:25:08 +02:00
parent d1debd7f3a
commit 2e91d92936
3 changed files with 60897 additions and 0 deletions

13
src/main/cpp/Makefile Normal file
View File

@@ -0,0 +1,13 @@
default: tiv
tiv.o: tiv.cpp CImg.h
g++ -Wall -fexceptions -O2 -c tiv.cpp -o tiv.o
tiv : tiv.o
g++ tiv.o -o tiv -pthread -s
install: tiv
cp tiv /usr/local/bin/tiv
clean:
rm -f tiv tiv.o