forked from PuddingPengChen/Qt-EncodeAndDecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenCode.pro
More file actions
41 lines (36 loc) · 920 Bytes
/
enCode.pro
File metadata and controls
41 lines (36 loc) · 920 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
#-------------------------------------------------
#
# Project created by QtCreator 2016-08-12T09:38:48
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = enCode
TEMPLATE = app
#include ("./qrencode/qrencode.pri")
CONFIG += c++11
SOURCES += main.cpp\
mainwindow.cpp \
tcQrencode.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 += mainwindow.h \
tcQrencode.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 += mainwindow.ui