From be790c37775a67ac4d44114a6c718d141e659642 Mon Sep 17 00:00:00 2001 From: anonimal Date: Tue, 5 Mar 2019 03:20:28 +0000 Subject: [PATCH] README: updated Linux build deps/directions A preliminary cleanup for the Linux build. The GUI build still needs clarification so others can successfully build on their systems (in other words, these new directions aren't 100% full-proof yet). Note: build-essential should not be needed: "If you do not plan to build Debian packages, you don't need this package. Starting with dpkg (>= 1.14.18) this package is required for building Debian packages" --- README.md | 10 +++++----- utils/Zano.sh | 0 2 files changed, 5 insertions(+), 5 deletions(-) mode change 100644 => 100755 utils/Zano.sh diff --git a/README.md b/README.md index 8d8c7a58..07adf327 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,12 @@ Building | [Qt](https://download.qt.io/archive/qt/) (only for GUI) | 5.8.0 | 5.9.1 | 5.10.1 | ### Linux + Recommended OS version: Ubuntu 17.04 LTS. - 1. Install dependencies: `sudo apt-get install build-essential git cmake unzip libicu-dev ocl-icd-opencl-dev mesa-common-dev libglu1-mesa-dev` - 2. Install Qt and Boost - 3. Set `BOOST_ROOT` and `QT_PREFIX_PATH` environment variables - 4. `mkdir build`
`cd build`
`cmake -DBUILD_GUI=FALSE -DSTATIC=TRUE ..`
`make` -5. In order to build GUI, revise and run script at `/utils/build_script_linux.sh` + +1. `$ sudo apt install git g++ cmake unzip libicu-dev mesa-common-dev libglu1-mesa-dev qt5-default qtwebengine5-dev` +2. `$ cd zano/ && make -j$(nproc) gui` +3. Look for the binaries, including the `Zano` GUI, in the build directory ### Windows Recommended OS version: Windows 7 x64. diff --git a/utils/Zano.sh b/utils/Zano.sh old mode 100644 new mode 100755