Adds openssl and boost lib includes for OSX build

This adds the paths to the openssl and boost
libraries (installed with brew) for the MacOS X
build. Furthermore the MacOS X build instructions
in the README.md has been improved (formatting).
This commit is contained in:
maitscha
2016-11-09 08:55:31 +01:00
committed by Christoph Mayerhofer
parent 032e721532
commit 46d87f9c91
2 changed files with 42 additions and 36 deletions

View File

@@ -58,7 +58,7 @@ LIBS += -L$$WALLET_ROOT/lib \
# currently we only support x86 build as qt.io only provides prebuilt qt for x86 mingw
win32 {
contains(QMAKE_HOST.arch, x86_64) {
message("Host is 64bit")
MSYS_PATH=c:/msys64/mingw32
@@ -78,7 +78,7 @@ win32 {
}
LIBS+=-L$$MSYS_PATH/lib
LIBS+= \
-Wl,-Bstatic \
-lboost_serialization-mt \
@@ -130,8 +130,10 @@ linux {
macx {
LIBS+= \
-L/usr/local/lib \
-lboost_serialization \
-L/usr/local/lib \
-L/usr/local/opt/openssl/lib \
-L/usr/local/opt/boost/lib \
-lboost_serialization \
-lboost_thread-mt \
-lboost_system \
-lboost_date_time \