-
Notifications
You must be signed in to change notification settings - Fork 37
/
tabbededitor.pro
46 lines (36 loc) · 1.21 KB
/
tabbededitor.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
# Qt Creator linking
QTC_PLUGIN_NAME = TabbedEditor
QTC_LIB_DEPENDS += \
extensionsystem \
utils
QTC_PLUGIN_DEPENDS += \
coreplugin \
projectexplorer \
texteditor
## set the QTC_SOURCE environment variable to override the setting here
QTCREATOR_SOURCES = $$(QTC_SOURCE)
isEmpty(QTCREATOR_SOURCES):error("Error. QTC_SOURCE variable must point to Qt Creator sources.")
## set the QTC_BUILD environment variable to override the setting here
IDE_BUILD_TREE = $$(QTC_BUILD)
isEmpty(IDE_BUILD_TREE):error("Error. QTC_BUILD variable must be set.")
## 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($$QTCREATOR_SOURCES/src/qtcreatorplugin.pri)
DEFINES += TABBEDEDITOR_LIBRARY
# TabbedEditor files
SOURCES += \
plugin.cpp \
tabbar.cpp
HEADERS += \
constants.h \
plugin.h \
tabbar.h
RESOURCES += \
resources/res.qrc
OTHER_FILES += \
README.md