Output build temp files in build/ instead of current directory.
This commit is contained in:
parent
adea540e38
commit
36eccc5174
2 changed files with 4 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -10,10 +10,7 @@ src/bitcoind
|
|||
*.patch
|
||||
.bitcoin
|
||||
#compilation and Qt preprocessor part
|
||||
*.o
|
||||
ui_*.h
|
||||
*.qm
|
||||
moc_*
|
||||
Makefile
|
||||
bitcoin-qt
|
||||
#resources cpp
|
||||
|
|
|
@ -5,6 +5,10 @@ DEFINES += QT_GUI
|
|||
# DEFINES += SSL
|
||||
CONFIG += no_include_pwd
|
||||
|
||||
OBJECTS_DIR = build
|
||||
MOC_DIR = build
|
||||
UI_DIR = build
|
||||
|
||||
# for boost 1.37, add -mt to the boost libraries
|
||||
LIBS += -lssl -lcrypto -ldb_cxx
|
||||
unix:!macx:LIBS += -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread
|
||||
|
|
Loading…
Reference in a new issue