summaryrefslogtreecommitdiffstats
path: root/examples/multimedia/video/qmlvideofilter_opencl/qmlvideofilter_opencl.pro
blob: c83929f7253c0fffcfc0b66ee918505f4b973c16 (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

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