You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Go to file
Andrey Volk 64824eecea
Merge pull request #216 from signalwire/v206
Bump version to 2.0.6
2 months ago
.github [GHA] Remove unsupported build targets. 2 months ago
.vscode Initial commit 6 years ago
KSTest Rename both package and library name to libks2. 1 year ago
cmake Rename both package and library name to libks2. 1 year ago
src Bump version to 2.0.6 2 months ago
tests Fix build of unit-tests on Windows. 8 months ago
win Bump version to 2.0.6 2 months ago
.gitignore Rename both package and library name to libks2. 1 year ago
CMakeLists.txt Bump version to 2.0.6 2 months ago
CODING_GUIDELINES Initial commit 6 years ago
README Queue peek (#99) 3 years ago
copyright Copyright 2018-2023 1 year ago
libks.code-workspace Initial commit 6 years ago
libks.pc.in Rename both package and library name to libks2. 1 year ago
run_tests.sh try removing cd 1 year ago
scan_build.sh try removing cd 1 year ago
uninstall.cmake.in Initial commit 6 years ago

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