Sem descrição

Shane Bryldt 960cebff06 Propagation of certified_client_token from config through to transport há 3 anos atrás
cmake 20b9057b32 Remove some handles and update to libks 2.0 (#48) há 5 anos atrás
examples c4757e4aa1 Initial commit há 6 anos atrás
inc 960cebff06 Propagation of certified_client_token from config through to transport há 3 anos atrás
src 960cebff06 Propagation of certified_client_token from config through to transport há 3 anos atrás
swclt_test be550c1d83 Added test for execute passing id há 3 anos atrás
win 6fa8c4d6e9 Add version defines, fix Windows build, upgrade to libks v2.0, version bump. há 4 anos atrás
.drone.yml 6fa6193f48 Update Drone CI signature. há 3 anos atrás
.gitignore 6fa8c4d6e9 Add version defines, fix Windows build, upgrade to libks v2.0, version bump. há 4 anos atrás
.gitmodules c4757e4aa1 Initial commit há 6 anos atrás
CMakeLists.txt 6fa8c4d6e9 Add version defines, fix Windows build, upgrade to libks v2.0, version bump. há 4 anos atrás
README 76adf028da add support for RPM package building on Centos 7.x há 5 anos atrás
copyright e49da4a6bb Fix build há 6 anos atrás
signalwire_client.pc.in 4006c9e1d2 Fix include dir for pkgconfig há 6 anos atrás
swclient.code-workspace c4757e4aa1 Initial commit há 6 anos atrás
swclt_test.cfg c4757e4aa1 Initial commit há 6 anos atrás
swclt_test_bad.cfg c4757e4aa1 Initial commit há 6 anos atrás
swclt_testuncert.cfg c4757e4aa1 Initial commit há 6 anos atrás
uninstall.cmake.in c4757e4aa1 Initial commit há 6 anos atrás

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