-
Notifications
You must be signed in to change notification settings - Fork 0
/
QDevelop.pro
153 lines (153 loc) · 3.77 KB
/
QDevelop.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
CONFIG += qt uitools warn_on release
DESTDIR += bin
FORMS += ui/about.ui \
ui/addexistant.ui \
ui/addnew.ui \
ui/addnewclass.ui \
ui/addnewclassmethod.ui \
ui/addnewclassvariable.ui \
ui/addscope.ui \
ui/addsetget.ui \
ui/exechoice.ui \
ui/findfiles.ui \
ui/findwidget.ui \
ui/gotoline.ui \
ui/main.ui \
ui/newimplementation.ui \
ui/newproject.ui \
ui/newvariable.ui \
ui/openfile.ui \
ui/options.ui \
ui/parameters.ui \
ui/projectpropertie.ui \
ui/replacewidget.ui \
ui/shortcuts.ui \
ui/subclassing.ui \
ui/toolsControl.ui \
ui/warning.ui \
ui/breakpointcondition.ui \
ui/registers.ui
HEADERS += src/InitCompletion.h \
src/QIComplete/parse.h \
src/QIComplete/readtags.h \
src/QIComplete/tree.h \
src/addexistantimpl.h \
src/addnewclassimpl.h \
src/addnewclassmethodimpl.h \
src/addnewclassvariableimpl.h \
src/addnewimpl.h \
src/addscopeimpl.h \
src/addsetgetimpl.h \
src/assistant.h \
src/build.h \
src/cpphighlighter.h \
src/debug.h \
src/designer.h \
src/editor.h \
src/findfileimpl.h \
src/lineedit.h \
src/linenumbers.h \
src/logbuild.h \
src/mainimpl.h \
src/misc.h \
src/newprojectimpl.h \
src/openfileimpl.h \
src/optionsimpl.h \
src/parametersimpl.h \
src/pluginsinterfaces.h \
src/projectmanager.h \
src/projectpropertieimpl.h \
src/selectionborder.h \
src/shortcutsimpl.h \
src/stackimpl.h \
src/subclassingimpl.h \
src/tabwidget.h \
src/textEdit.h \
src/toolscontrolimpl.h \
src/treeclasses.h \
src/treeproject.h \
src/getlastversion.h \
src/registersimpl.h
INCLUDEPATH += . src src/ui
MOC_DIR += build/moc
QT += core gui network sql
RCC_DIR += build/rcc
RC_FILE += QDevelop.rc
RESOURCES += resources/resources.qrc
SOURCES += src/InitCompletion.cpp \
src/QIComplete/parse.cpp \
src/QIComplete/readtags.cpp \
src/QIComplete/tree.cpp \
src/addexistantimpl.cpp \
src/addnewclassimpl.cpp \
src/addnewclassmethodimpl.cpp \
src/addnewclassvariableimpl.cpp \
src/addnewimpl.cpp \
src/addscopeimpl.cpp \
src/addsetgetimpl.cpp \
src/assistant.cpp \
src/build.cpp \
src/cpphighlighter.cpp \
src/debug.cpp \
src/designer.cpp \
src/editor.cpp \
src/findfileimpl.cpp \
src/lineedit.cpp \
src/linenumbers.cpp \
src/logbuild.cpp \
src/main.cpp \
src/mainimpl.cpp \
src/misc.cpp \
src/newprojectimpl.cpp \
src/openfileimpl.cpp \
src/optionsimpl.cpp \
src/parametersimpl.cpp \
src/projectmanager.cpp \
src/projectpropertieimpl.cpp \
src/selectionborder.cpp \
src/shortcutsimpl.cpp \
src/stackimpl.cpp \
src/subclassingimpl.cpp \
src/tabwidget.cpp \
src/textEdit.cpp \
src/toolscontrolimpl.cpp \
src/treeclasses.cpp \
src/treeproject.cpp \
src/getlastversion.cpp \
src/registersimpl.cpp
TEMPLATE = app
TRANSLATIONS += resources/translations/QDevelop_Chinese.ts \
resources/translations/QDevelop_Czech.ts \
resources/translations/QDevelop_Dutch.ts \
resources/translations/QDevelop_French.ts \
resources/translations/QDevelop_German.ts \
resources/translations/QDevelop_Italian.ts \
resources/translations/QDevelop_Polish.ts \
resources/translations/QDevelop_Portuguese.ts \
resources/translations/QDevelop_Russian.ts \
resources/translations/QDevelop_Spanish.ts \
resources/translations/QDevelop_Turkish.ts \
resources/translations/QDevelop_Ukrainian.ts \
resources/translations/QDevelop_Hungarian.ts \
resources/translations/QDevelop_Japanese.ts \
resources/translations/QDevelop_Vietnamese.ts
UI_DIR += build/ui
macx {
TARGET = QDevelop
ICON += resources/images/qdevelop.icns
OBJECTS_DIR += build/o/mac
}
unix {
TARGET = qdevelop
OBJECTS_DIR += build/o/unix
target.path += /usr/bin/
INSTALLS += target
}
win32 {
TARGET = QDevelop
OBJECTS_DIR += build/o/win32
CONFIG -= debug_and_release
}
!exists(resources/translations/QDevelop_Russian.qm) {
error(Please run \"lrelease QDevelop.pro\" before building the project)
}