Skip to content

mdovwagner/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.

About

Implementation of a directed graph container in C++

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 95.6%
  • CMake 4.1%
  • Shell 0.3%