-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathquickcross.pri
56 lines (49 loc) · 1.2 KB
/
quickcross.pri
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
CONFIG += c++11
QT += concurrent
INCLUDEPATH += $$PWD
HEADERS += \
$$PWD/qcdevice.h \
$$PWD/qcstandardpaths.h \
$$PWD/qcrect.h \
$$PWD/qcline.h \
$$PWD/qcimageloader.h \
$$PWD/qcmainthreadrunner.h \
$$PWD/qcimagereader.h \
$$PWD/priv/qcutils.h \
$$PWD/qcjsonreader.h \
$$PWD/priv/qcreader.h \
$$PWD/qceasingcurve.h \
$$PWD/qcrefresher.h \
$$PWD/priv/qcimageloader_p.h \
$$PWD/qctime.h \
$$PWD/qcimagepool.h \
$$PWD/QCImageLoader \
$$PWD/QCImagePool \
$$PWD/QCMainThreadRunner \
$$PWD/QCRefresher \
$$PWD/qcimagepoolprovider.h \
$$PWD/QCImagePoolProvider \
$$PWD/qcfuture.h
SOURCES += \
$$PWD/qcdevice.cpp \
$$PWD/qcqmltypes.cpp \
$$PWD/qcstandardpaths.cpp \
$$PWD/qcrect.cpp \
$$PWD/qcline.cpp \
$$PWD/qcimageloader.cpp \
$$PWD/qcimagereader.cpp \
$$PWD/priv/qcutils.cpp \
$$PWD/qcjsonreader.cpp \
$$PWD/priv/qcreader.cpp \
$$PWD/qceasingcurve.cpp \
$$PWD/qcrefresher.cpp \
$$PWD/qctime.cpp \
$$PWD/qcimagepool.cpp \
$$PWD/qcmainthreadrunner.cpp \
$$PWD/qcimagepoolprovider.cpp
DISTFILES +=
RESOURCES += \
$$PWD/quickcross.qrc
android {
QT += androidextras
}