summaryrefslogtreecommitdiffstats
path: root/examples/opcua/opcuaviewer/opcuaviewer.pro
blob: 15e55ce8bd274a7f552061df3098a0d8dd0b70b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
QT += opcua widgets
CONFIG += c++11
DEPENDPATH += INCLUDEPATH
INCLUDEPATH += \
              $$PWD/../../../../src/plugins/opcua/open62541 \

SOURCES += main.cpp \
    mainwindow.cpp \
    opcuamodel.cpp \
    treeitem.cpp

#install
target.path = $$[QT_INSTALL_EXAMPLES]/opcua/opcuaviewer
INSTALLS += target

HEADERS += \
    mainwindow.h \
    opcuamodel.h \
    treeitem.h