forked from editorconfig/editorconfig-qtcreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
editorconfig.pro
61 lines (45 loc) · 1.37 KB
/
editorconfig.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
#
# Copyright 2016 Herbert Graeber
#
DEFINES += EDITORCONFIG_LIBRARY
# EditorConfig files
SOURCES += editorconfigplugin.cpp \
editorconfigdata.cpp \
editorconfiglogging.cpp \
editorconfigwizard.cpp \
editorconfigwizardpage.cpp \
editorconfigwizarddialog.cpp
HEADERS += editorconfigplugin.h \
editorconfig_global.h \
editorconfigdata.h \
editorconfiglogging.h \
editorconfigwizard.h \
editorconfigconstants.h \
editorconfigwizardpage.h \
editorconfigwizarddialog.h
# Qt Creator linking
isEmpty(QTCREATOR_SOURCES) QTCREATOR_SOURCES = $$(QTC_SOURCE)
isEmpty(IDE_BUILD_TREE) IDE_BUILD_TREE = $$(QTC_BUILD)
LIBS += -leditorconfig
###### 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.
QTC_PLUGIN_NAME = EditorConfig
QTC_LIB_DEPENDS += \
# nothing here at this time
QTC_PLUGIN_DEPENDS += \
coreplugin \
projectexplorer \
texteditor
QTC_PLUGIN_RECOMMENDS += \
# optional plugin dependencies. nothing here at this time
###### End _dependencies.pri contents ######
include($$QTCREATOR_SOURCES/src/qtcreatorplugin.pri)
DISTFILES += \
README.md \
.editorconfig
FORMS += \
editorconfigpage.ui
TRANSLATIONS += \
editorconfig_de.ts \
editorconfig_it.ts