-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathjentos.code.pro
More file actions
82 lines (73 loc) · 1.72 KB
/
jentos.code.pro
File metadata and controls
82 lines (73 loc) · 1.72 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
80
81
82
#-------------------------------------------------
#
# Project created by QtCreator 2012-04-28T10:44:05
#
#-------------------------------------------------
QT += core gui webkit widgets webkitwidgets
TEMPLATE = app
FORMS += mainwindow.ui \
finddialog.ui \
prefsdialog.ui \
findinfilesdialog.ui \
previewhtml5.ui \
saveonclosedialog.ui \
addpropertydialog.ui \
updaterdialog.ui
SOURCES += main.cpp\
mainwindow.cpp \
codeeditor.cpp \
colorswatch.cpp \
projecttreemodel.cpp \
std.cpp \
debugtreemodel.cpp \
finddialog.cpp \
prefs.cpp \
prefsdialog.cpp \
findinfilesdialog.cpp \
quickhelp.cpp \
listwidgetcomplete.cpp \
codeanalyzer.cpp \
tabwidgetdrop.cpp \
proc.cpp \
theme.cpp \
previewhtml5.cpp \
customcombobox.cpp \
saveonclosedialog.cpp \
addpropertydialog.cpp \
updaterdialog.cpp
HEADERS += mainwindow.h \
codeeditor.h \
colorswatch.h \
projecttreemodel.h \
std.h \
debugtreemodel.h \
finddialog.h \
prefs.h \
prefsdialog.h \
findinfilesdialog.h \
quickhelp.h \
listwidgetcomplete.h \
codeanalyzer.h \
tabwidgetdrop.h \
proc.h \
theme.h \
previewhtml5.h \
customcombobox.h \
saveonclosedialog.h \
addpropertydialog.h \
updaterdialog.h
RESOURCES += \
resources.qrc
# resources.qrc
TARGET = Jentos.Code
#OK, this seems to prevent latest Windows QtCreator from being able to run Ted (builds fine).
#Solved by using qtcreator-2.4.1
DESTDIR = exec
win32{
RC_FILE = appicon.rc
}
mac{
# WTF..enabling this appears to *break* 10.6 compatibility!!!!!
# QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6
ICON = ted.icns
}