Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 706 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 706 Bytes

cppdigraph Build Status

Implementation of a directed graph container in C++

Building

As a User

To build a single .so library file for cppdigraph:

mkdir build
cd build
cmake ../src
make
make install

As a Developer

To build the library and test environment for cppdigraph:

mkdir build
cd build
cmake ..
make
make install

Once the test environment is compiled, you can run them with ctest. Tests are registered in test/CMakeLists.txt using the add_test directive. To see the stdout of the tests as they run, use ctest -V.