forked from Kalebros/qt-bqrencode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
BQREncode.pro
60 lines (51 loc) · 1.18 KB
/
BQREncode.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
#-------------------------------------------------
#
# Project created by QtCreator 2015-05-08T14:29:43
#
#-------------------------------------------------
QT += core gui
TARGET = BQREncode
TEMPLATE = lib
DEFINES += BQRENCODE_LIBRARY
INCLUDEPATH += .
SOURCES += \
qrencode/bitstream.c \
qrencode/mask.c \
qrencode/mmask.c \
qrencode/mqrspec.c \
qrencode/qrencode.c \
qrencode/qrinput.c \
qrencode/qrspec.c \
qrencode/rscode.c \
qrencode/split.c \
bqrcode.cpp \
bqrcodegen.cpp \
bqrimagefactory.cpp \
bqrdefaultimagefactory.cpp \
bqrcolorfactory.cpp \
bqrdecoratedcolorfactory.cpp
HEADERS +=\
bqrencode_global.h \
qrencode/bitstream.h \
qrencode/config.h \
qrencode/mask.h \
qrencode/mmask.h \
qrencode/mqrspec.h \
qrencode/qrencode.h \
qrencode/qrencode_inner.h \
qrencode/qrinput.h \
qrencode/qrspec.h \
qrencode/rscode.h \
qrencode/split.h \
bqrcode.h \
bqrcodegen.h \
bqrimagefactory.h \
bqrdefaultimagefactory.h \
bqrcolorfactory.h \
bqrdecoratedcolorfactory.h
unix {
target.path = /usr/lib
INSTALLS += target
}
DISTFILES += \
BQREncode.pri