-
Notifications
You must be signed in to change notification settings - Fork 9
/
terminal.pro
39 lines (28 loc) · 1.24 KB
/
terminal.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
DEFINES += TERMINALPLUGIN_LIBRARY
HEADERS += terminalplugin.h \
terminalwindow.h
SOURCES += terminalplugin.cpp \
terminalwindow.cpp
INCLUDEPATH += /usr/local/include
## set the QTC_SOURCE environment variable to override the setting here
QTCREATOR_SOURCES = $$(QTC_SOURCE)
isEmpty(QTCREATOR_SOURCES):QTCREATOR_SOURCES=/Users/atreat/dev/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=/Users/atreat/dev/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 OS X
#USE_USER_DESTDIR = yes
QTC_PLUGIN_NAME = TerminalPlugin
QTC_LIB_DEPENDS += \
# nothing here at this time
QTC_PLUGIN_DEPENDS += \
coreplugin texteditor
QTC_PLUGIN_RECOMMENDS += \
# optional plugin dependencies. nothing here at this time
LIBS += -L../qtermwidget/build -lqtermwidget5
include($$QTCREATOR_SOURCES/src/qtcreatorplugin.pri)