暂无描述

Andrey Volk 03827ee3c4 Merge pull request #74 from signalwire/scanbuild7 3 年之前
.vscode c4757e4aa1 Initial commit 6 年之前
cmake c4757e4aa1 Initial commit 6 年之前
examples c4757e4aa1 Initial commit 6 年之前
inc cbc15d75ae Remove obsolete APIs 5 年之前
src e6c5787989 Merge branch 'master' into simplify-stuff 5 年之前
swclt_bench c4757e4aa1 Initial commit 6 年之前
swclt_test 0db61ce24c scan-build: Uninitialized argument value in BLADE_NETCAST_PROTOCOL_PROVIDER_ADD_PARAM_MARSHAL 3 年之前
win b8895ff653 Update libks to 1.6.0 on Windows 4 年之前
.drone.yml a82d17a213 Update Drone CI signature. 3 年之前
.gitignore 2e57dfcf0b Update .gitignore 5 年之前
.gitmodules c4757e4aa1 Initial commit 6 年之前
CMakeLists.txt 800a56b602 version bump 4 年之前
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_bench.cfg 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