بدون توضیح

Shane Bryldt 538cb93ee3 Whitespace tweak 5 سال پیش
cmake 20b9057b32 Remove some handles and update to libks 2.0 (#48) 5 سال پیش
examples c4757e4aa1 Initial commit 6 سال پیش
inc 538cb93ee3 Whitespace tweak 5 سال پیش
src b77862be7f Merge branch 'v2.0' into 2.4.0-blade-updates 5 سال پیش
swclt_test 1d14ec093f Report connection failure if TTL queue fills up. Do not wait longer than 5 seconds when waiting for next TTL. Fix min heap implementation. 5 سال پیش
win 45b9c11d70 version bump 5 سال پیش
.drone.yml 1d10697828 Fix .drone.yml 5 سال پیش
.gitignore 20b9057b32 Remove some handles and update to libks 2.0 (#48) 5 سال پیش
.gitmodules c4757e4aa1 Initial commit 6 سال پیش
CMakeLists.txt 20b9057b32 Remove some handles and update to libks 2.0 (#48) 5 سال پیش
README 76adf028da add support for RPM package building on Centos 7.x 5 سال پیش
copyright e49da4a6bb Fix build 6 سال پیش
signalwire_client.pc.in 4006c9e1d2 Fix include dir for pkgconfig 6 سال پیش
swclient.code-workspace c4757e4aa1 Initial commit 6 سال پیش
swclt_test.cfg c4757e4aa1 Initial commit 6 سال پیش
swclt_test_bad.cfg c4757e4aa1 Initial commit 6 سال پیش
swclt_testuncert.cfg c4757e4aa1 Initial commit 6 سال پیش
uninstall.cmake.in c4757e4aa1 Initial commit 6 سال پیش

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