-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqsciapp.pro
50 lines (40 loc) · 881 Bytes
/
qsciapp.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
TEMPLATE = app
TARGET = qsciedit
CONFIG += qt debug_and_release
QT += xml
unix|macx { include(config.unix) }
win32 { include(config.win32) }
CONFIG(debug, debug|release) {
DEFINES += DEBUG
}
SOURCES = qsciapp.cpp \
qticonloader.cpp \
lexersel.cpp \
searchdialog.cpp \
actions.cpp \
editorsettings.cpp \
asciidoclexer.cpp \
miblexer.cpp \
qeaction.cpp \
main.cpp
HEADERS = qsciapp.h \
qticonloader.h \
lexersel.h \
searchdialog.h \
actions.h \
globals.h \
editorsettings.h \
version.h \
asciidoclexer.h \
miblexer.h \
qeaction.h
RESOURCES = qsciapp.qrc
INCLUDEPATH += $${QSCI_HEADER_PATH}
LIBS += -L$${QSCI_LIB_PATH} \
-lqscintilla2
target.path = $${INSTALL_PATH}/bin
INSTALLS += target
include (version.mk)
message ("Qsci library path: $${QSCI_LIB_PATH}")
message ("Qsci header path: $${QSCI_HEADER_PATH}")
message ("Install path: $${INSTALL_PATH}")