Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 858 Bytes

File metadata and controls

24 lines (14 loc) · 858 Bytes

cpp-basic-libs

This repository contains the implementations of basic data structures and algorithms using c++. To build this project, you need CMake installed in your system. You can download it for free from here http://www.cmake.org/.

Algorithms:

  • Concurrent queues

It is always recommended to build the project in a different directory from the source. Followings are the instructions to build the project.

mkdir build       # Create a directory to hold the build output.
cd build
cmake ..
make all

Please note that the above build folder should be added in .gitignore file so that we don't accidentally add the contents of this folder in the git commit.

After building the tests, you can run the tests by using the following commands:

make test

You can also perform the tests by executing the following command:

make check