Update build instructions (#226)

This commit is contained in:
Konstantinos Sideris 2018-02-05 14:12:07 +02:00
parent 43ba4d5ed5
commit b6c39abcb4
1 changed files with 11 additions and 5 deletions

View File

@ -101,16 +101,13 @@ export CC=clang-3.6 CXX=clang++-3.6
On Ubuntu 14.04 Trusty, it's possible to use GCC 4.9.4+, but it is not recommended, because it requires installing GCC packages from third-party PPAs. Later versions of Ubuntu that come with GCC 4.9.4+ should work with GCC out-of-the-box.
##### OSX (Xcode 8 or later)
##### macOS (Xcode 8 or later)
```bash
brew update
brew install qt5 lmdb
brew install qt5 lmdb cmake llvm
```
N.B. you will need to pass `-DCMAKE_PREFIX_PATH=/usr/local/opt/qt5`
to cmake to point it at your qt5 install (tweaking the path as needed)
### Building
Clone the repo with its submodules
@ -131,6 +128,15 @@ and then run
make release
```
which invokes cmake and translates to
```bash
cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake --build build
```
You might need to pass `-DCMAKE_PREFIX_PATH=<< Qt install location >>` to cmake to point it at your qt5 install.
The `nheko` binary will be located in the `build` directory.
#### Nix