diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-06-22 20:11:12 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-06-22 20:11:35 +0200 |
commit | 47c6215c223ac85eeb31504aa2a56369bdfb3789 (patch) | |
tree | b954ee8712514d72089a4f23a3cd9e93c820d0a0 /bitcoin-qt.pro | |
parent | 5f280ff5578554750d53391b1e089cb891748c59 (diff) |
use #ifdef QT_UI to distinguish Qt UI instead of hardcoded #if 0
Diffstat (limited to 'bitcoin-qt.pro')
-rw-r--r-- | bitcoin-qt.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index 501695bd05..7e918f144f 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -2,6 +2,7 @@ TEMPLATE = app TARGET = DEPENDPATH += . INCLUDEPATH += src src/json src/cryptopp src/qt +DEFINES += QT_GUI # for boost 1.37, add -mt to the boost libraries unix:LIBS += -lssl -lcrypto -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread -ldb_cxx @@ -66,7 +67,7 @@ HEADERS += src/qt/bitcoingui.h \ src/qt/guiconstants.h \ src/qt/optionsmodel.h \ src/qt/monitoreddatamapper.h \ - src/externui.h \ + src/qtui.h \ src/qt/transactiondesc.h \ src/qt/transactiondescdialog.h \ src/qt/bitcoinamountfield.h |