Skip to content

Implementation of a directed graph container in C++

License

Notifications You must be signed in to change notification settings

Vipyr/cppdigraph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.