mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
build against libwallet_merged and boost libs
This commit is contained in:
parent
f9e0916776
commit
238d582b17
2 changed files with 11 additions and 3 deletions
|
@ -19,7 +19,7 @@ rm -fr $BITMONERO_DIR/build
|
|||
mkdir -p $BITMONERO_DIR/build/release
|
||||
pushd $BITMONERO_DIR/build/release
|
||||
|
||||
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX="$BITMONERO_DIR" ../..
|
||||
cmake -D CMAKE_BUILD_TYPE=Release -D STATIC=ON -D CMAKE_INSTALL_PREFIX="$BITMONERO_DIR" ../..
|
||||
|
||||
pushd $BITMONERO_DIR/build/release/src/wallet
|
||||
make -j$CPU_CORE_COUNT
|
||||
|
|
|
@ -8,7 +8,6 @@ CONFIG += c++11
|
|||
|
||||
INCLUDEPATH += $$WALLET_ROOT/include
|
||||
|
||||
message($$INCLUDEPATH)
|
||||
|
||||
HEADERS += \
|
||||
filter.h \
|
||||
|
@ -32,7 +31,16 @@ SOURCES = *.qml \
|
|||
wizard/*.qml
|
||||
}
|
||||
|
||||
LIBS += -L$$WALLET_ROOT/lib -lwallet
|
||||
LIBS += -L$$WALLET_ROOT/lib \
|
||||
-lwallet_merged \
|
||||
-lboost_serialization \
|
||||
-lboost_thread \
|
||||
-lboost_system \
|
||||
-lboost_date_time \
|
||||
-lboost_filesystem \
|
||||
-lboost_regex
|
||||
|
||||
|
||||
|
||||
# translations files;
|
||||
TRANSLATIONS = monero-core_en.ts \ # English (could be untranslated)
|
||||
|
|
Loading…
Reference in a new issue