-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathqrEncodeTest.pro
More file actions
46 lines (35 loc) · 947 Bytes
/
qrEncodeTest.pro
File metadata and controls
46 lines (35 loc) · 947 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2015-03-29T17:44:41
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QtQREncoder
TEMPLATE = app
#Msvc wasn't finding the "config.h" file in the project dir
#and this includepath takes care of that.
INCLUDEPATH += $$PWD
SOURCES += main.cpp\
widget.cpp \
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
HEADERS += widget.h \
qrencode/bitstream.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 \
FORMS += widget.ui