No Description

Shane Bryldt 1b6aaf2691 Remove 2 log entries that are at CRIT level that cause sentry alerts, but already report back with error returns and often have additional logging on that at better locations 4 years ago
.vscode c4757e4aa1 Initial commit 6 years ago
cmake c4757e4aa1 Initial commit 6 years ago
examples c4757e4aa1 Initial commit 6 years ago
inc cbc15d75ae Remove obsolete APIs 5 years ago
src 1b6aaf2691 Remove 2 log entries that are at CRIT level that cause sentry alerts, but already report back with error returns and often have additional logging on that at better locations 4 years ago
swclt_bench c4757e4aa1 Initial commit 6 years ago
swclt_test e6c5787989 Merge branch 'master' into simplify-stuff 5 years ago
win 45b9c11d70 version bump 5 years ago
.drone.yml 25cd3521c9 Rework .drone.yml and sign it. 5 years ago
.gitignore 2e57dfcf0b Update .gitignore 5 years ago
.gitmodules c4757e4aa1 Initial commit 6 years ago
CMakeLists.txt fafe85359c Fix cmake failure when CHANGELOG is empty 5 years ago
README 76adf028da add support for RPM package building on Centos 7.x 5 years ago
copyright e49da4a6bb Fix build 6 years ago
signalwire_client.pc.in 4006c9e1d2 Fix include dir for pkgconfig 6 years ago
swclient.code-workspace c4757e4aa1 Initial commit 6 years ago
swclt_bench.cfg c4757e4aa1 Initial commit 6 years ago
swclt_test.cfg c4757e4aa1 Initial commit 6 years ago
swclt_test_bad.cfg c4757e4aa1 Initial commit 6 years ago
swclt_testuncert.cfg c4757e4aa1 Initial commit 6 years ago
uninstall.cmake.in c4757e4aa1 Initial commit 6 years ago

README

To build use cmake (Minimum version 3.7.2):
cmake .
make

To install:
make install

To un-install:
make uninstall

To build debug (no optimizations, symbols - this is the default):
cmake . -DCMAKE_BUILD_TYPE=Debug
make

To build release (optimizations, symbols):
cmake . -DCMAKE_BUILD_TYPE=Release
make

To build to a custom installation prefix (default is /usr):
cmake . -DCMAKE_INSTALL_PREFIX:PATH=/usr
make

To build with openssl on non-standard location (e.g. on Mac):
OPENSSL_ROOT_DIR=/usr/local/opt/openssl cmake . -DCMAKE_INSTALL_PREFIX:PATH=/usr/local

To build release package with build number 42:
PACKAGE_RELEASE="42" cmake . -DCMAKE_BUILD_TYPE=Release && make package

To buld CMAKE from source
wget https://cmake.org/files/v3.7/cmake-3.7.2.tar.gz
tar -zxvf cmake-3.7.2.tar.gz
cd cmake-3.7.2
./bootstrap --prefix=/usr/local
make
make install
/usr/local/bin/cmake --version

Centos dependencies:
- yum groupinstall "Development Tools"
- yum install libuuid-devel libatomic openssl-devel