Skip to content

Instantly share code, notes, and snippets.

@dinusv
Last active March 10, 2016 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dinusv/0fb3c7149ec28ce7edf7 to your computer and use it in GitHub Desktop.
Save dinusv/0fb3c7149ec28ce7edf7 to your computer and use it in GitHub Desktop.
Qmake configuration for Open CV.
# Qmake configuration for Open CV
#
# To use, include this file, and load the modules via loadOpenCV. Add the deploy parameter in case
# you want the binaries copied to the application path:
# include(opencvconfig.pro)
# loadOpenCV(core highgui imgproc ffmpeg, deploy)
# Avoid Multiple Inclusion
isEmpty(OPENCVCONFIG_PRO){
OPENCVCONFIG_PRO = 1
win32{
# Windows Configuration
# By default, we consider the OPENCV_DIR system environment variable set. The value is set up when installing
# Open CV for Visual Studio. The variables can also be configured from below.
OPENCV_DIR_INCLUDE = $$(OPENCV_DIR)/../../include
OPENCV_DIR_LIBRARIES = $$(OPENCV_DIR)/lib
OPENCV_DIR_DLLS = $$(OPENCV_DIR)/bin
# Determine Version
isEmpty(OPENCV_VERSION){
OPENCV_VERSION_FIND = $$files($$OPENCV_DIR_LIBRARIES/opencv_core*)
OPENCV_VERSION_FIND = $$first(OPENCV_VERSION_FIND)
OPENCV_VERSION_FIND = $$split(OPENCV_VERSION_FIND, opencv_core)
OPENCV_VERSION_FIND = $$last(OPENCV_VERSION_FIND)
OPENCV_VERSION_FIND = $$replace(OPENCV_VERSION_FIND, [^0-9], '')
OPENCV_VERSION = $$OPENCV_VERSION_FIND
}
CONFIG(debug, debug|release):OPENCV_VERSION = $${OPENCV_VERSION}d
INCLUDEPATH += $${OPENCV_DIR_INCLUDE}
CONFIG(debug, debug|release): DLL_DESTINATION = $$OUT_PWD/debug/
CONFIG(release, debug|release):DLL_DESTINATION = $$OUT_PWD/release/
# Helper Function to copy dlls
defineTest(copyCvDll) {
files = $$1
for(FILE, files) {
DDIR = $${DLL_DESTINATION}
# Replace slashes in paths with backslashes
win32:FILE ~= s,/,\\,g
win32:DDIR ~= s,/,\\,g
QMAKE_POST_LINK += $$QMAKE_COPY \"$$FILE\" \"$$DDIR\" $$escape_expand(\\n\\t)
}
export(QMAKE_POST_LINK)
}
defineTest(loadOpenCV){
modules = $$1
copyDll = $$2
contains(modules, core){
LIBS += -L$${OPENCV_DIR_LIBRARIES} -lopencv_core$${OPENCV_VERSION}
equals(copyDll, deploy){
copyCvDll($${OPENCV_DIR_DLLS}/opencv_core$${OPENCV_VERSION}.dll)
}
}
contains(modules, highgui){
LIBS += -L$${OPENCV_DIR_LIBRARIES} -lopencv_highgui$${OPENCV_VERSION}
equals(copyDll, deploy):copyCvDll($${OPENCV_DIR_DLLS}/opencv_highgui$${OPENCV_VERSION}.dll)
}
contains(modules, imgproc){
LIBS += -L$${OPENCV_DIR_LIBRARIES} -lopencv_imgproc$${OPENCV_VERSION}
equals(copyDll, deploy):copyCvDll($${OPENCV_DIR_DLLS}/opencv_imgproc$${OPENCV_VERSION}.dll)
}
contains(modules, video){
LIBS += -L$${OPENCV_DIR_LIBRARIES} -lopencv_video$${OPENCV_VERSION}
equals(copyDll, deploy):copyCvDll($${OPENCV_DIR_DLLS}/opencv_video$${OPENCV_VERSION}.dll)
}
contains(modules, calib3d){
LIBS += -L$${OPENCV_DIR_LIBRARIES} -lopencv_calib3d$${OPENCV_VERSION}
equals(copyDll, deploy):copyCvDll($${OPENCV_DIR_DLLS}/opencv_calib3d$${OPENCV_VERSION}.dll)
}
contains(modules, features2d){
LIBS += -L$${OPENCV_DIR_LIBRARIES} -lopencv_features2d$${OPENCV_VERSION}
equals(copyDll, deploy):copyCvDll($${OPENCV_DIR_DLLS}/opencv_features2d$${OPENCV_VERSION}.dll)
}
contains(modules, flann){
LIBS += -L$${OPENCV_DIR_LIBRARIES} -lopencv_flann$${OPENCV_VERSION}
equals(copyDll, deploy):copyCvDll($${OPENCV_DIR_DLLS}/opencv_flann$${OPENCV_VERSION}.dll)
}
contains(modules, ffmpeg){
equals(copyDll, deploy):copyCvDll($$files($${OPENCV_DIR_DLLS}/opencv_ffmpeg$${OPENCV_VERSION_FIND}*.dll))
}
export(LIBS)
}
}
unix{
# Unix Configuration
CONFIG += link_pkgconfig
PKGCONFIG += opencv
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment