From 166f07f26fa841da48e3f0c22bd68a38d1b9141b Mon Sep 17 00:00:00 2001 From: f4exb Date: Wed, 8 Mar 2017 11:49:58 +0100 Subject: [PATCH] ATV Modulator: Windows build: implement opencv --- plugins/channeltx/modatv/modatv.pro | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/channeltx/modatv/modatv.pro b/plugins/channeltx/modatv/modatv.pro index 17ee296b4..287281965 100644 --- a/plugins/channeltx/modatv/modatv.pro +++ b/plugins/channeltx/modatv/modatv.pro @@ -22,6 +22,9 @@ INCLUDEPATH += ../../../sdrbase CONFIG(Release):build_subdir = release CONFIG(Debug):build_subdir = debug +CONFIG(MINGW32):INCLUDEPATH += "D:\softs\opencv\build\include" +CONFIG(MINGW64):INCLUDEPATH += "D:\softs\opencv\build\include" + SOURCES += atvmod.cpp\ atvmodgui.cpp\ atvmodplugin.cpp @@ -34,4 +37,7 @@ FORMS += atvmodgui.ui LIBS += -L../../../sdrbase/$${build_subdir} -lsdrbase +CONFIG(MINGW32):LIBS += -LD:\softs\opencv\build\mw32\install\x86\mingw\bin -llibopencv_core2413 -llibopencv_highgui2413 +CONFIG(MINGW64):LIBS += -LD:\softs\opencv\build\mw64\install\x64\mingw\bin -llibopencv_core2413 -llibopencv_highgui2413 + RESOURCES = ../../../sdrbase/resources/res.qrc