Skip to content

Commit 4e4f47d

Browse files
committed
Started new repo.
0 parents  commit 4e4f47d

File tree

407 files changed

+226353
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

407 files changed

+226353
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Makefile
2+
build/*

build/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

coinvault.pro

+141
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
#######################################
2+
# CoinQ_vault.cpp
3+
#
4+
# Copyright (c) 2013 Eric Lombrozo
5+
#
6+
# All Rights Reserved.
7+
8+
RC_FILE = res/coinvault.rc
9+
10+
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
11+
CONFIG += c++11 rtti thread
12+
13+
QMAKE_CXXFLAGS_WARN_ON += -Wno-unknown-pragmas
14+
15+
INCLUDEPATH += \
16+
../../src \
17+
../../deps/CoinClasses/src
18+
19+
QT += widgets network
20+
21+
release: DESTDIR = build/release
22+
debug: DESTDIR = build/debug
23+
24+
OBJECTS_DIR = $$DESTDIR/obj
25+
MOC_DIR = $$DESTDIR/moc
26+
RCC_DIR = $$DESTDIR/rcc
27+
UI_DIR = $$DESTDIR/ui
28+
29+
HEADERS = \
30+
src/settings.h \
31+
src/versioninfo.h \
32+
src/copyrightinfo.h \
33+
src/splashscreen.h \
34+
src/mainwindow.h \
35+
src/commandserver.h \
36+
src/paymentrequest.h \
37+
src/numberformats.h \
38+
src/accountmodel.h \
39+
src/accountview.h \
40+
src/keychainmodel.h \
41+
src/keychainview.h \
42+
src/newaccountdialog.h \
43+
src/newkeychaindialog.h \
44+
src/rawtxdialog.h \
45+
src/createtxdialog.h \
46+
src/txmodel.h \
47+
src/txview.h \
48+
src/accounthistorydialog.h \
49+
src/txactions.h \
50+
src/scriptmodel.h \
51+
src/scriptview.h \
52+
src/scriptdialog.h \
53+
src/requestpaymentdialog.h \
54+
src/networksettingsdialog.h \
55+
src/resyncdialog.h
56+
57+
SOURCES = \
58+
src/main.cpp \
59+
src/splashscreen.cpp \
60+
src/mainwindow.cpp \
61+
src/commandserver.cpp \
62+
src/paymentrequest.cpp \
63+
src/numberformats.cpp \
64+
src/accountmodel.cpp \
65+
src/accountview.cpp \
66+
src/keychainmodel.cpp \
67+
src/keychainview.cpp \
68+
src/newaccountdialog.cpp \
69+
src/newkeychaindialog.cpp \
70+
src/rawtxdialog.cpp \
71+
src/createtxdialog.cpp \
72+
src/txmodel.cpp \
73+
src/txview.cpp \
74+
src/accounthistorydialog.cpp \
75+
src/txactions.cpp \
76+
src/scriptmodel.cpp \
77+
src/scriptview.cpp \
78+
src/scriptdialog.cpp \
79+
src/requestpaymentdialog.cpp \
80+
src/networksettingsdialog.cpp \
81+
src/resyncdialog.cpp
82+
83+
RESOURCES = \
84+
res/coinvault.qrc
85+
86+
# install
87+
target.path = build
88+
INSTALLS += target
89+
90+
# CoinQ objects
91+
LIBS += \
92+
../../src/obj/CoinQ_vault.o \
93+
../../src/obj/CoinQ_vault_db-odb.o \
94+
../../src/obj/CoinQ_script.o \
95+
../../src/obj/CoinQ_peer_io.o \
96+
../../src/obj/CoinQ_netsync.o \
97+
../../src/obj/CoinQ_blocks.o \
98+
../../src/obj/CoinQ_filter.o
99+
100+
# Coin objects
101+
LIBS += \
102+
../../deps/CoinClasses/src/obj/CoinKey.o \
103+
../../deps/CoinClasses/src/obj/CoinNodeData.o \
104+
../../deps/CoinClasses/src/obj/MerkleTree.o \
105+
../../deps/CoinClasses/src/obj/BloomFilter.o \
106+
../../deps/CoinClasses/src/obj/IPv6.o
107+
108+
# Hash function objects (for QuarkCoin)
109+
LIBS += \
110+
../../deps/CoinClasses/src/hashfunc/obj/blake.o \
111+
../../deps/CoinClasses/src/hashfunc/obj/bmw.o \
112+
../../deps/CoinClasses/src/hashfunc/obj/groestl.o \
113+
../../deps/CoinClasses/src/hashfunc/obj/jh.o \
114+
../../deps/CoinClasses/src/hashfunc/obj/keccak.o \
115+
../../deps/CoinClasses/src/hashfunc/obj/skein.o
116+
117+
win32 {
118+
LIBS += \
119+
-lws2_32 \
120+
-lmswsock \
121+
-lboost_log-mt-s \
122+
-lboost_system-mt-s \
123+
-lboost_filesystem-mt-s \
124+
-lboost_program_options-mt-s \
125+
-lboost_regex-mt-s \
126+
-lboost_thread_win32-mt-s \
127+
} else {
128+
LIBS += \
129+
/usr/local/lib/libboost_log.a \
130+
-lboost_system \
131+
-lboost_filesystem \
132+
-lboost_program_options \
133+
-lboost_regex \
134+
-lboost_thread
135+
}
136+
137+
LIBS += \
138+
-lssl \
139+
-lcrypto \
140+
-lodb-sqlite \
141+
-lodb

0 commit comments

Comments
 (0)