You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
889 B
42 lines
889 B
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2014-01-22T11:47:38
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui widgets network
|
|
|
|
|
|
TARGET = alephzero
|
|
TEMPLATE = app
|
|
|
|
CONFIG(debug, debug|release): DEFINES += ETH_DEBUG
|
|
|
|
QMAKE_CXXFLAGS += -std=c++11
|
|
|
|
#CONFIG += local_cryptopp
|
|
|
|
local_cryptopp {
|
|
QMAKE_LIBDIR += ../../cryptopp562
|
|
CRYPTOPP_LIBS += -lcryptopp
|
|
}
|
|
|
|
!local_cryptopp {
|
|
CRYPTOPP_LIBS += -lcryptoppeth
|
|
}
|
|
|
|
INCLUDEPATH += ../../cpp-ethereum
|
|
QMAKE_LIBDIR += ../../cpp-ethereum-build/libethereum ../../cpp-ethereum-build/secp256k1
|
|
CONFIG(debug, debug|release): LIBS += -Wl,-rpath,../../cpp-ethereum-build/libethereum
|
|
LIBS += -lethereum $${CRYPTOPP_LIBS} -lsecp256k1 -lminiupnpc -lleveldb -lgmp -lboost_filesystem -lboost_system
|
|
|
|
SOURCES += main.cpp \
|
|
MainWin.cpp
|
|
|
|
HEADERS += \
|
|
MainWin.h
|
|
|
|
FORMS += Main.ui
|
|
|
|
|
|
|
|
|