Sin descripción

Andrey Volk 6fa8c4d6e9 Add version defines, fix Windows build, upgrade to libks v2.0, version bump. hace 4 años
cmake 20b9057b32 Remove some handles and update to libks 2.0 (#48) hace 5 años
examples c4757e4aa1 Initial commit hace 6 años
inc 6fa8c4d6e9 Add version defines, fix Windows build, upgrade to libks v2.0, version bump. hace 4 años
src 1f34226bfc Fix signed/unsigned comparison hace 4 años
swclt_test f2d7b9a417 Added support for blade 2.4.1 network data filtering hace 4 años
win 6fa8c4d6e9 Add version defines, fix Windows build, upgrade to libks v2.0, version bump. hace 4 años
.drone.yml 1d10697828 Fix .drone.yml hace 5 años
.gitignore 6fa8c4d6e9 Add version defines, fix Windows build, upgrade to libks v2.0, version bump. hace 4 años
.gitmodules c4757e4aa1 Initial commit hace 6 años
CMakeLists.txt 6fa8c4d6e9 Add version defines, fix Windows build, upgrade to libks v2.0, version bump. hace 4 años
README 76adf028da add support for RPM package building on Centos 7.x hace 5 años
copyright e49da4a6bb Fix build hace 6 años
signalwire_client.pc.in 4006c9e1d2 Fix include dir for pkgconfig hace 6 años
swclient.code-workspace c4757e4aa1 Initial commit hace 6 años
swclt_test.cfg c4757e4aa1 Initial commit hace 6 años
swclt_test_bad.cfg c4757e4aa1 Initial commit hace 6 años
swclt_testuncert.cfg c4757e4aa1 Initial commit hace 6 años
uninstall.cmake.in c4757e4aa1 Initial commit hace 6 años

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