Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 607 Bytes

File metadata and controls

25 lines (16 loc) · 607 Bytes

WavesC

C library for working with Waves.

Build

This package uses cmake 2.8+ for building and it depends on openssl dev package.

To build it on linux should install openssl-dev and just call cmake and make

cmake .
make

On Mac OS X you should install openssl using brew and then pass the openssl path as cmake parameter:

brew install openssl
cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl .
make

For a quick start, we took the bcdev's waves_vanity source codesource code as a basis.