-
Notifications
You must be signed in to change notification settings - Fork 0
/
remotedev.pro
64 lines (52 loc) · 1.83 KB
/
remotedev.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
DEFINES += REMOTEDEV_LIBRARY
# RemoteDev files
SOURCES += \
remotedevplugin.cpp \
connectionmanager.cpp \
connection/sftpconnection.cpp \
connection.cpp \
projectsettingswidget.cpp \
mappingsmanager.cpp \
devicemanager.cpp \
connectionhelper.cpp \
optionspage.cpp \
optionswidget.cpp \
connection/sftpchannelexecutor.cpp \
mappingsmanager/mapping.cpp
HEADERS += \
remotedevplugin.h \
remotedev_global.h \
remotedevconstants.h \
connectionmanager.h \
connection/sftpconnection.h \
connection.h \
connectionconstants.h \
projectsettingswidget.h \
mappingsmanager.h \
devicemanager.h \
connectionhelper.h \
optionspage.h \
optionswidget.h \
connection/sftpchannelexecutor.h \
mappingsmanager/mapping.h
CONFIG += C++14
# Qt Creator linking
## set the QTC_SOURCE environment variable to override the setting here
QTCREATOR_SOURCES = $$(QTC_SOURCE)
isEmpty(QTCREATOR_SOURCES):QTCREATOR_SOURCES=/home/elvenfighter/Projects/qt-creator
## set the QTC_BUILD environment variable to override the setting here
IDE_BUILD_TREE = $$(QTC_BUILD)
#isEmpty(IDE_BUILD_TREE):IDE_BUILD_TREE=/home/elvenfighter/Programs/QtTest/Tools/QtCreator
isEmpty(IDE_BUILD_TREE):IDE_BUILD_TREE=/home/elvenfighter/Projects/qt-creator-build
## uncomment to build plugin into user config directory
## <localappdata>/plugins/<ideversion>
## where <localappdata> is e.g.
## "%LOCALAPPDATA%\QtProject\qtcreator" on Windows Vista and later
## "$XDG_DATA_HOME/data/QtProject/qtcreator" or "~/.local/share/data/QtProject/qtcreator" on Linux
## "~/Library/Application Support/QtProject/Qt Creator" on Mac
# USE_USER_DESTDIR = yes
include(remotedev_dependencies.pri)
include($$QTCREATOR_SOURCES/src/qtcreatorplugin.pri)
FORMS += \
projectsettingswidget.ui \
optionswidget.ui