-
Notifications
You must be signed in to change notification settings - Fork 41
/
Xplist.pro
102 lines (86 loc) · 2.13 KB
/
Xplist.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
#-------------------------------------------------
# Project created by QtCreator 2012-10-06T16:37:20
# 开始升级于2020.10.15
#-------------------------------------------------
QT += core gui
QT += xml
QT += network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
ICON = my.icns
RC_FILE += myapp.rc
RC_FILE +=
TARGET = Xplist
TEMPLATE = app
TRANSLATIONS = translation_ru.ts \
translation_cn.ts
SOURCES += main.cpp\
MyTabBar.cpp \
MyTabPopup.cpp \
Plist.cpp \
PlistDate.cpp \
autoupdatedialog.cpp \
codeeditor.cpp \
comboboxdelegatebool.cpp \
filesystemwatcher.cpp \
mainwindow.cpp \
domparser.cpp \
dommodel.cpp \
domitem.cpp \
comboboxdelegate.cpp \
lineeditdelegate.cpp \
editortab.cpp \
editortabswidget.cpp \
commands.cpp \
itemstate.cpp \
myapp.cpp \
myhighlighter.cpp \
mytreeview.cpp \
pugixml.cpp \
recentfiles.cpp
HEADERS += mainwindow.h \
MyTabBar.h \
MyTabPopup.h \
Plist.hpp \
PlistDate.hpp \
autoupdatedialog.h \
base64.hpp \
codeeditor.h \
comboboxdelegatebool.h \
domparser.h \
dommodel.h \
domitem.h \
comboboxdelegate.h \
filesystemwatcher.h \
lineeditdelegate.h \
editortab.h \
editortabswidget.h \
commands.h \
itemstate.h \
myapp.h \
myhighlighter.h \
mytreeview.h \
pugiconfig.hpp \
pugixml.hpp \
recentfiles.h
FORMS += mainwindow.ui \
autoupdatedialog.ui \
editortab.ui
RESOURCES += \
res.qrc
DISTFILES += \
Info.plist \
myapp.rc
mac {
# Only include / compile these files on OS X
OBJECTIVE_SOURCES +=
HEADERS +=
# Additionally include Cocoa for OS X code
LIBS += -framework Foundation -framework Cocoa
INCLUDEPATH += /System/Library/Frameworks/Foundation.framework/Versions/C/Headers
}
CONFIG(debug,debug|release) {
DESTDIR = $$absolute_path($${_PRO_FILE_PWD_}/bin/debug)
} else {
DESTDIR = $$absolute_path($${_PRO_FILE_PWD_}/bin/release)
}