-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCLIPSEditor.pro
83 lines (66 loc) · 1.65 KB
/
CLIPSEditor.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
#-------------------------------------------------
#
# Project created by QtCreator 2011-06-29T14:17:21
#
#-------------------------------------------------
QT += core gui widgets # help
TARGET = clipseditor
SOURCES += \
main.cpp \
mainwindow.cpp \
highlighter.cpp \
helpviewer.cpp \
codeeditor.cpp \
configdialog.cpp \
keywords.cpp \
config.cpp \
searchbar.cpp \
sessions.cpp \
snippets.cpp \
bookmarks.cpp
HEADERS += \
mainwindow.h \
highlighter.h \
helpviewer.h \
codeeditor.h \
configdialog.h \
config.h \
keywords.h \
searchbar.h \
sessions.h \
snippets.h \
bookmarks.h
RESOURCES += \
clipseditor.qrc
FORMS += \
searchbar.ui \
configdialog.ui \
sessions.ui \
snippets.ui \
bookmarks.ui \
helpviewer.ui
# #Set Style
# DEFINES += SETSTYLE
# смотреть static.txt
# CONFIG += static upx
win32: {
RC_ICONS += rc/icon.ico
static {
message("*** w32 static")
DEFINES += W32STATIC
QT -= help
INCLUDEPATH += C:/Qt/Qt5.4.1/5.4/Src/qttools/include/ \
C:/X-Files/CLIPSEditor/build-qttools-Desktop_Qt_5_4_1_MinGW_32bit_Static-Release/include
LIBS += -LC:/X-Files/CLIPSEditor/build-qttools-Desktop_Qt_5_4_1_MinGW_32bit_Static-Release/lib -lQt5Help
upx {
message("+++ upx")
PWD_WIN = $${PWD}
PWD_WIN ~= s,/,\\,g
OUT_PWD_WIN = $${OUT_PWD}
OUT_PWD_WIN ~= s,/,\\,g
QMAKE_POST_LINK = $${PWD_WIN}\\misc\\upx\\upx.exe $${OUT_PWD_WIN}\\release\\$${TARGET}.exe
}
} else {
QT += help
}
}