-
Notifications
You must be signed in to change notification settings - Fork 0
/
libklatexformula.pro
48 lines (42 loc) · 1.28 KB
/
libklatexformula.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
QT += core gui xml
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += \
main.cpp \
src/klfbackend.cpp \
src/klfblockprocess.cpp \
src/klfdatautil.cpp \
src/klfdebug.cpp \
src/klfdefs.cpp \
src/klffactory.cpp \
src/klffilterprocess.cpp \
src/klflatexpreviewthread.cpp \
src/klfpobj.cpp \
src/klfsysinfo.cpp \
src/klfuserscript.cpp \
src/klfutil.cpp
HEADERS += \
src/klfbackend.h \
src/klfbackend_p.h \
src/klfblockprocess.h \
src/klfdatautil.h \
src/klfdebug.h \
src/klfdefs.h \
src/klffactory.h \
src/klffilterprocess.h \
src/klffilterprocess_p.h \
src/klflatexpreviewthread.h \
src/klflatexpreviewthread_p.h \
src/klfpobj.h \
src/klfsysinfo.h \
src/klfuserscript.h \
src/klfutil.h
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target