Skip to content

mitsutaka-takeda/cds

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

Requirements

How to build

Clone the following repositories at the same level as this repositoy.

So after cloning, a directory contains directories; cds, libraries, and utfcpp.

Use cmake to generate and build cds.

mkdir build
pushd build

# Generate Makefile project with Clang
CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DBOOST_ROOT=path/to/boost_1_59_0 -DCMAKE_CXX_FLAGS=-stdlib=libstdc++ -DCMAKE_EXE_LINKER_FLAGS=-stdlib=libstdc++ ../cds

# Generate Makefile project with GCC
CC=gcc CXX=g++ cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DBOOST_ROOT=path/to/boost_1_59_0/ ../cds

# The build step is the same for both Clang & GCC
cmake --build ./

About

A simple text search program

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published