From 5cf84ff1f5b034c3720e80d0eb037719602d7a12 Mon Sep 17 00:00:00 2001 From: Timo Uhlmann Date: Sat, 11 Mar 2017 19:35:27 +0100 Subject: Fixed linux compile instructions --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 6819742c..4791ead7 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Packaging for your favorite distribution would be a welcome contribution! ### On Linux: -(Tested on Ubuntu 16.04 i386 and Linux Mint 18 "Sarah" - Cinnamon (64-bit)) +(Tested on Ubuntu 16.04 x86, 16.10 x64 and Linux Mint 18 "Sarah" - Cinnamon x64) 1. Install Monero dependencies. @@ -83,15 +83,15 @@ Packaging for your favorite distribution would be a welcome contribution! 5. Install the GUI dependencies. - - For Ubuntu 16.04 i386 + - For Ubuntu 16.04 x86 `sudo apt-get install qtbase5-dev qt5-default qtdeclarative5-dev qml-module-qtquick-controls qml-module-qtquick-xmllistmodel qttools5-dev-tools qml-module-qtquick-dialogs libzbar-dev` - - For Ubuntu 16.04 x64 + - For Ubuntu 16.04+ x64 `sudo apt-get install qtbase5-dev qt5-default qtdeclarative5-dev qtmultimedia5-dev qml-module-qtquick-controls qml-module-qtquick-xmllistmodel qttools5-dev-tools qml-module-qtquick-dialogs qml-module-qt-labs-settings libqt5qml-graphicaleffects libzbar-dev` - - For Linux Mint 18 "Sarah" - Cinnamon (64-bit) + - For Linux Mint 18 "Sarah" - Cinnamon x64 `sudo apt install qml-module-qt-labs-settings qml-module-qtgraphicaleffects libzbar-dev` @@ -101,7 +101,7 @@ Packaging for your favorite distribution would be a welcome contribution! 7. Run the GUI client. - `./release/bin/monero-wallet-gui` + `./build/release/bin/monero-wallet-gui` ### On OS X: -- cgit v1.2.3 From 82cb50994c9cefb897a69889d95d374423a60c98 Mon Sep 17 00:00:00 2001 From: Jonathan Cross Date: Thu, 9 Mar 2017 20:03:12 +0100 Subject: README: Updating Mac OSX Build notes and adding heading. --- README.md | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 6819742c..9e10b6b7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +# Monero GUI + Copyright (c) 2014-2017, The Monero Project ## Development Resources @@ -109,28 +111,33 @@ Packaging for your favorite distribution would be a welcome contribution! 2. Install [homebrew](http://brew.sh/) 3. Install [monero](https://github.com/monero-project/monero) dependencies: - `brew install boost --c++11` + `brew install boost --c++11` + + `brew install openssl` - to install openssl headers + + `brew install pkgconfig` - `brew install openssl` - to install openssl headers + `brew install cmake` - `brew install pkgconfig` + `brew install qt5` (or download QT 5.8+ from [qt.io](https://www.qt.io/download-open-source/)) - `brew install cmake` + If you have an older version of Qt installed via homebrew, you can force it to use 5.x like so: -4. Install latest Qt using official installer from [qt.io](https://www.qt.io/download-open-source/) (homebrew version might be outdated). -5. Add Qt bin dir to your path: + `brew link --force --overwrite qt5` - `export PATH=$PATH:$HOME/Qt/5.7/clang_64/bin` +5. Add Qt bin dir to your path. Example: - where ```Qt``` is the folder you selected to install Qt. + `export PATH=$PATH:/usr/local/opt/qt5/bin` + + make sure this is where Qt 5.x is installed on **your** system eg `$HOME/Qt/5.8/clang_64/bin` if you downloaded from qt.io. 6. Grab an up-to-date copy of the monero-core repository. - `git clone https://github.com/monero-project/monero-core.git` + `git clone https://github.com/monero-project/monero-core.git` 7. Go into the repository. - `cd monero-core` + `cd monero-core` 8. Build libwallet -- cgit v1.2.3 From 439372ed5e42fbe3ecfb218ccee1198334f5d054 Mon Sep 17 00:00:00 2001 From: MoroccanMalinois Date: Thu, 23 Mar 2017 00:21:34 +0000 Subject: README: add qml-module-qtmultimedia dependency --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 193c9cf5..b98a4d37 100644 --- a/README.md +++ b/README.md @@ -87,15 +87,15 @@ Packaging for your favorite distribution would be a welcome contribution! - For Ubuntu 16.04 x86 - `sudo apt-get install qtbase5-dev qt5-default qtdeclarative5-dev qml-module-qtquick-controls qml-module-qtquick-xmllistmodel qttools5-dev-tools qml-module-qtquick-dialogs libzbar-dev` + `sudo apt-get install qtbase5-dev qt5-default qtdeclarative5-dev qml-module-qtquick-controls qml-module-qtquick-xmllistmodel qttools5-dev-tools qml-module-qtquick-dialogs` - For Ubuntu 16.04+ x64 - `sudo apt-get install qtbase5-dev qt5-default qtdeclarative5-dev qtmultimedia5-dev qml-module-qtquick-controls qml-module-qtquick-xmllistmodel qttools5-dev-tools qml-module-qtquick-dialogs qml-module-qt-labs-settings libqt5qml-graphicaleffects libzbar-dev` + `sudo apt-get install qtbase5-dev qt5-default qtdeclarative5-dev qtmultimedia5-dev qml-module-qtquick-controls qml-module-qtquick-xmllistmodel qttools5-dev-tools qml-module-qtquick-dialogs qml-module-qt-labs-settings libqt5qml-graphicaleffects qml-module-qtmultimedia` - For Linux Mint 18 "Sarah" - Cinnamon x64 - `sudo apt install qml-module-qt-labs-settings qml-module-qtgraphicaleffects libzbar-dev` + `sudo apt install qml-module-qt-labs-settings qml-module-qtgraphicaleffects` 6. Build the GUI. -- cgit v1.2.3