mirror of
https://github.com/Fishwaldo/libzwaveip.git
synced 2025-03-15 19:31:31 +00:00
17 lines
550 B
Markdown
17 lines
550 B
Markdown
|
Build instructions for OSX
|
||
|
--------------------------
|
||
|
Builds on OSX have been tested with brew packages.
|
||
|
|
||
|
To Compile, make sure you have the necessary packages installed:
|
||
|
```bash
|
||
|
$ brew install cmake openssl doxygen
|
||
|
$ git clone https://github.com/Z-WavePublic/libzwaveip.git
|
||
|
$ cd libzwaveip
|
||
|
$ mkdir build
|
||
|
$ cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/ -DOPENSSL_LIBRARIES=/usr/local/opt/openssl/lib/ ..
|
||
|
$ make
|
||
|
```
|
||
|
|
||
|
You need to supply the path to the copy of openssl installed with brew, as the default openssl library on OSX is not compatible.
|
||
|
|