Sem descrição

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