You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
435 B
25 lines
435 B
QT += core dbus widgets
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
CONFIG += c++11
|
|
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
SOURCES += \
|
|
OpenCLManager.cpp \
|
|
main.cpp \
|
|
MainWindow.cpp
|
|
|
|
HEADERS += \
|
|
MainWindow.h \
|
|
OpenCLManager.h
|
|
|
|
FORMS += \
|
|
MainWindow.ui
|
|
|
|
LIBS += -lOpenCL
|
|
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|