Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 892 Bytes

README.md

File metadata and controls

54 lines (37 loc) · 892 Bytes

LKRS

A scalable lightweight RDF knowledge retrieval system

build

Make sure you have installed conan, and can use it correctly to build with CMake

If you're not familiar with conan, you can install it by pip, that is pip install conan, and have a quick start

On Linux

build manually

mkdir build
cd build
cmake .. -G "Unix Makefiles"  -DCMAKE_BUILD_TYPE=Release 
cmake --build .

build with script

cd scripts
./build.sh

On Windows

build manually

mkdir build
cd build
cmake .. 
cmake --build . --config Release

build with script

cd scripts
./build.bat

Build with Docker

docker build --tag lkrs:demo .
docker run -it --name lkrs lkrs:demo