summaryrefslogtreecommitdiffstats
path: root/examples/multimedia/video/qmlvideofilter_opencl/qmlvideofilter_opencl.pro
blob: b391bb8d70534e2ab4eaef1a644893b6129316f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
TEMPLATE = app
TARGET = qmlvideofilter_opencl

QT += quick multimedia

SOURCES = main.cpp
HEADERS = rgbframehelper.h

RESOURCES = qmlvideofilter_opencl.qrc
OTHER_FILES = main.qml

target.path = $$[QT_INSTALL_EXAMPLES]/multimedia/video/qmlvideofilter_opencl
INSTALLS += target

# Edit these as necessary
osx {
    LIBS += -framework OpenCL
} else {
    INCLUDEPATH += c:/cuda/include
    LIBPATH += c:/cuda/lib/x64
    LIBS += -lopengl32 -lOpenCL
}