forked from shi-yan/bingot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBingot.pro
46 lines (37 loc) · 810 Bytes
/
Bingot.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
#-------------------------------------------------
#
# Project created by QtCreator 2014-08-14T09:49:22
#
#-------------------------------------------------
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = bingot
TEMPLATE = app
OBJECTS_DIR += obj
MOC_DIR += moc
VPATH += src
SOURCES += main.cpp\
Bingot.cpp \
BlockChain.cpp \
Block.cpp \
Transaction.cpp \
Miner.cpp \
NetworkEngine.cpp \
SocketWorker.cpp \
NetworkTask.cpp \
NetworkTaskQueue.cpp \
BigInt.cpp
HEADERS += \
Bingot.h \
BlockChain.h \
Block.h \
Transaction.h \
Miner.h \
NetworkEngine.h \
SocketWorker.h \
NetworkTask.h \
NetworkTaskQueue.h \
BigInt.h
FORMS +=
INCLUDEPATH += /usr/include/crypto++
LIBS += -lcrypto++