Aucune description

Andrey Volk a6dfae7799 Fix git changelog command il y a 5 ans
.vscode 4288e5c3b2 Initial commit il y a 6 ans
KSTest 4288e5c3b2 Initial commit il y a 6 ans
cmake 4288e5c3b2 Initial commit il y a 6 ans
src 0142d30e19 Add more built-in JSON validation functions and a custom macro to mak… (#39) il y a 5 ans
tests b16272bdc3 Fix a couple places that were using ks_rng il y a 5 ans
win 1fde90ae7b version bump il y a 5 ans
.drone.yml 377e7ff283 Rework .drone.yml and sign it. il y a 5 ans
.gitignore e978e0e388 Update .gitignore il y a 5 ans
CMakeLists.txt a6dfae7799 Fix git changelog command il y a 4 ans
CODING_GUIDELINES 4288e5c3b2 Initial commit il y a 6 ans
README 289912c24b add support for RPM package building on Centos 7.x il y a 5 ans
copyright 4288e5c3b2 Initial commit il y a 6 ans
libks.code-workspace 4288e5c3b2 Initial commit il y a 6 ans
libks.pc.in 4288e5c3b2 Initial commit il y a 6 ans
uninstall.cmake.in 4288e5c3b2 Initial commit il y a 6 ans

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