This repository was archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathqtc-sourcetrail.pro
More file actions
executable file
·79 lines (59 loc) · 2.3 KB
/
Copy pathqtc-sourcetrail.pro
File metadata and controls
executable file
·79 lines (59 loc) · 2.3 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
QT += gui network
CONFIG += include_source_dir
CONFIG += c++11
QMAKE_CXXFLAGS += -std=c++11
DEFINES += SOURCETRAIL_LIBRARY
# QtCreatorSourcetrail files
TARGET = Sourcetrail
SOURCES += \
src/sourcetrailpluginsettingspage.cpp \
src/sourcetrailpluginsettings.cpp \
src/sourcetrailplugin.cpp
HEADERS += \
src/sourcetrailpluginsettingspage.h \
src/sourcetrailpluginsettings.h \
src/sourcetrailplugin.h \
src/sourcetrailconstants.h \
src/sourcetrail_global.h
# Qt Creator linking
## Either set the IDE_SOURCE_TREE when running qmake,
## or set the QTC_SOURCE environment variable, to override the default setting
isEmpty(IDE_SOURCE_TREE): IDE_SOURCE_TREE = $$QTC_SOURCE
isEmpty(IDE_SOURCE_TREE): IDE_SOURCE_TREE = "/home/st4ll1/dev/qt-creator"
## Either set the IDE_BUILD_TREE when running qmake,
## or set the QTC_BUILD environment variable, to override the default setting
isEmpty(IDE_BUILD_TREE): IDE_BUILD_TREE = $$QTC_BUILD
isEmpty(IDE_BUILD_TREE): IDE_BUILD_TREE = "/home/st4ll1/dev/qt-creator"
## 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
###### If the plugin can be depended upon by other plugins, this code needs to be outsourced to
###### <dirname>_dependencies.pri, where <dirname> is the name of the directory containing the
###### plugin's sources.
LIBS += -L$$IDE_PLUGIN_PATH/QtProject \
-L$$IDE_BUILD_TREE \
-L$$IDE_BUILD_TREE/plugins/QtProject \
-L$$IDE_BUILD_TREE/plugins
QTC_PLUGIN_NAME = Sourcetrail
QTC_LIB_DEPENDS += \
# nothing here at this time
QTC_PLUGIN_DEPENDS += \
coreplugin \
cppeditor
QTC_PLUGIN_RECOMMENDS += \
# optional plugin dependencies. nothing here at this time
###### End _dependencies.pri contents ######
include($$IDE_SOURCE_TREE/src/qtcreatorplugin.pri)
FORMS += \
src/sourcetrailpluginsettingspage.ui
RESOURCES += sourcetrail.qrc
DISTFILES += \
Sourcetrail.json.in
!isEmpty(OUTPUT_PATH) {
DESTDIR = $$OUTPUT_PATH
message("You set output path to $$DESTDIR")
}