check config when writing (#405)

* check config when writing

* integrate #403
This commit is contained in:
redPanther
2017-02-26 15:30:10 +01:00
committed by GitHub
parent 26154befa4
commit 72e2f0bf18
3 changed files with 30 additions and 5 deletions

View File

@@ -107,8 +107,8 @@ To generate make files on OS X:
After which you can run cmake with the correct qt5 path:
```
cmake -DCMAKE_PREFIX_PATH=/usr/local/Cellar/qt5/5.7.0 -DCMAKE_BUILD_TYPE=Release ..
```
export QVER=$(find /usr/local/Cellar/qt5 -type d -name "5.*" | sort -n | head -n1)
cmake -DCMAKE_PREFIX_PATH=$QVER -DCMAKE_BUILD_TYPE=Release ..```
### Run make to build Hyperion
The `-j $(nproc)` specifies the amount of CPU cores to use.