34f51c4f76
EasyEXIF is a tiny, lightweight C++ library that parses basic information out of EXIF files. It uses only the std::string library and is otherwise pure C++. It is made of one .h file and one .cpp file. This is a new dependency for the upcoming update of devel/vcglib[1] [1] https://github.com/cnr-isti-vclab/vcglib/commit/dd8c26474dfa3ee2cde2e4c39366fe9df41e667d
16 lines
344 B
Plaintext
16 lines
344 B
Plaintext
--- Makefile.orig 2015-11-14 20:31:28 UTC
|
|
+++ Makefile
|
|
@@ -1,5 +1,4 @@
|
|
-CXX=g++
|
|
-CXXFLAGS=-O2 -pedantic -Wall -Wextra -ansi -std=c++11
|
|
+#CXXFLAGS+=-O2 -pedantic -Wall -Wextra -ansi -std=c++11
|
|
|
|
all: demo
|
|
|
|
@@ -10,4 +9,4 @@ demo: exif.o demo.cpp
|
|
$(CXX) $(CXXFLAGS) -o demo exif.o demo.cpp
|
|
|
|
clean:
|
|
- rm -f *.o demo demo.exe
|
|
+ rm -f *.o demo
|