improved code style

This commit is contained in:
fourtf
2018-06-13 03:58:52 +02:00
parent 866f868b54
commit ae4cdbd5ab
3 changed files with 42 additions and 39 deletions
+4 -3
View File
@@ -13,12 +13,13 @@ If the Project does not build at this point, you might need to add additional Pa
`brew info openssl`
`brew info boost`
If brew doesn't link openssl properly then you should be able to link it yourself using those two commands:
- `ln -s /usr/local/opt/openssl/lib/* /usr/local/lib`
- `ln -s /usr/local/opt/openssl/include/openssl /usr/local/include/openssl`
The lines which you need to add to your project file should look similar to this
```
INCLUDEPATH += /usr/local/opt/openssl/include
LIBS += -L/usr/local/opt/openssl/lib
INCLUDEPATH += "/usr/local/Cellar/boost/1.67.0_1/include"
LIBS += -L"/usr/local/Cellar/boost/1.67.0_1/lib"
```