بدون توضیح

Andrey Volk 46da9a3712 Fix changelog when packaging for Debian. 4 سال پیش
.vscode 4288e5c3b2 Initial commit 6 سال پیش
KSTest 4288e5c3b2 Initial commit 6 سال پیش
cmake 2d92f0ac00 Fix typo in ksutil.cmake ksutil_target_check_include_file 5 سال پیش
src d5660fd749 Merge pull request #67 from signalwire/ks-wait-socket-polltypes 4 سال پیش
tests 2f0d1d2e8e fix testwebsock2 test on platforms without bswap64 4 سال پیش
win 1fde90ae7b version bump 5 سال پیش
.drone.yml 377e7ff283 Rework .drone.yml and sign it. 5 سال پیش
.gitignore e978e0e388 Update .gitignore 5 سال پیش
CMakeLists.txt 46da9a3712 Fix changelog when packaging for Debian. 4 سال پیش
CODING_GUIDELINES 4288e5c3b2 Initial commit 6 سال پیش
README 289912c24b add support for RPM package building on Centos 7.x 5 سال پیش
copyright 4288e5c3b2 Initial commit 6 سال پیش
libks.code-workspace 4288e5c3b2 Initial commit 6 سال پیش
libks.pc.in 4288e5c3b2 Initial commit 6 سال پیش
uninstall.cmake.in 4288e5c3b2 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 run tests:
ctest .

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