Timey provides a convenient wrapper around chrono for timing computations
using named timers.
Timey needs the following dependencies to be satisfied:
- CMake >= 3.0
- C++11 compiler
By default, the installation script below installs to the global location:
/opt/apps/timey/<timey-version>
mkdir -p ~/Projects/dandelion
cd ~/Projects/dandelion
git clone ssh://git@repos.cogizo.com:7999/dan/timey.git
mkdir build
cd build
cmake ..
make
make test
sudo make install
To generate coverage report (available at build/timey_coverage/index.html):
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_COVERAGE ..
make coverage