Merge pull request #3186 from lionleaf/makefile_opencv_imgcodecs
authorRonghang Hu <huronghang@hotmail.com>
Thu, 22 Oct 2015 22:17:26 +0000 (15:17 -0700)
committerRonghang Hu <huronghang@hotmail.com>
Thu, 22 Oct 2015 22:17:26 +0000 (15:17 -0700)
Add opencv_imgcodecs to library path in Makefile

Makefile
Makefile.config.example

index 7cc7393..4a1d41d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -184,7 +184,12 @@ ifeq ($(USE_LMDB), 1)
        LIBRARIES += lmdb
 endif
 ifeq ($(USE_OPENCV), 1)
-       LIBRARIES += opencv_core opencv_highgui opencv_imgproc
+       LIBRARIES += opencv_core opencv_highgui opencv_imgproc 
+
+       ifeq ($(OPENCV_VERSION), 3)
+               LIBRARIES += opencv_imgcodecs
+       endif
+               
 endif
 PYTHON_LIBRARIES := boost_python python2.7
 WARNINGS := -Wall -Wno-sign-compare
index bda66ea..1dd6a8f 100644 (file)
@@ -17,6 +17,9 @@
 #      possibility of simultaneous read and write
 # ALLOW_LMDB_NOLOCK := 1
 
+# Uncomment if you're using OpenCV 3
+# OPENCV_VERSION := 3
+
 # To customize your choice of compiler, uncomment and set the following.
 # N.B. the default for Linux is g++ and the default for OSX is clang++
 # CUSTOM_CXX := g++