暫無描述

Dragos Oancea 492532bcd2 add TCP_KEEPINTVL and TCP_KEEPIDLE. set both to 30 seconds. (#160) 1 年之前
.github f6a5a322ce try removing cd 1 年之前
.vscode 4288e5c3b2 Initial commit 6 年之前
KSTest 83984b42f6 Rename both package and library name to libks2. 1 年之前
cmake 83984b42f6 Rename both package and library name to libks2. 1 年之前
src 492532bcd2 add TCP_KEEPINTVL and TCP_KEEPIDLE. set both to 30 seconds. (#160) 1 年之前
tests 52a3f2a546 Copyright 2018-2023 1 年之前
win 83984b42f6 Rename both package and library name to libks2. 1 年之前
.drone.yml 55db922ac0 Update Drone CI signature (#127) 2 年之前
.gitignore 83984b42f6 Rename both package and library name to libks2. 1 年之前
CMakeLists.txt 83984b42f6 Rename both package and library name to libks2. 1 年之前
CODING_GUIDELINES 4288e5c3b2 Initial commit 6 年之前
README 3446706d3e Queue peek (#99) 3 年之前
copyright 52a3f2a546 Copyright 2018-2023 1 年之前
libks.code-workspace 4288e5c3b2 Initial commit 6 年之前
libks.pc.in 83984b42f6 Rename both package and library name to libks2. 1 年之前
run_tests.sh f6a5a322ce try removing cd 1 年之前
scan_build.sh f6a5a322ce try removing cd 1 年之前
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