Sen descrición

Shane Bryldt af3c1709e6 Adjusted the body buffer resizing to use the payload length correctly instead of coming up short by a few bytes in certain cases %!s(int64=5) %!d(string=hai) anos
.vscode 4288e5c3b2 Initial commit %!s(int64=6) %!d(string=hai) anos
KSTest 4288e5c3b2 Initial commit %!s(int64=6) %!d(string=hai) anos
cmake 4288e5c3b2 Initial commit %!s(int64=6) %!d(string=hai) anos
src af3c1709e6 Adjusted the body buffer resizing to use the payload length correctly instead of coming up short by a few bytes in certain cases %!s(int64=5) %!d(string=hai) anos
tests 4df7b51000 Prevent duplicate handle destroy %!s(int64=5) %!d(string=hai) anos
win 69464a917e version bump %!s(int64=5) %!d(string=hai) anos
.gitignore 588251b352 add ks_json_get_object_cstr_def %!s(int64=5) %!d(string=hai) anos
CMakeLists.txt 69464a917e version bump %!s(int64=5) %!d(string=hai) anos
CODING_GUIDELINES 4288e5c3b2 Initial commit %!s(int64=6) %!d(string=hai) anos
README 4288e5c3b2 Initial commit %!s(int64=6) %!d(string=hai) anos
copyright 4288e5c3b2 Initial commit %!s(int64=6) %!d(string=hai) anos
libks.code-workspace 4288e5c3b2 Initial commit %!s(int64=6) %!d(string=hai) anos
libks.pc.in 4288e5c3b2 Initial commit %!s(int64=6) %!d(string=hai) anos
uninstall.cmake.in 4288e5c3b2 Initial commit %!s(int64=6) %!d(string=hai) anos

README

To build use cmake (Minimum version 3.6.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