Repository for implementation of mathematical structures in as C++ classes.
Prerequisites
Installation
Build With
Authors
License
To build the project you need to install CMake. Here are the instructions
First you need to clone the repository to your computer:
git clone git@github.com:RokKos/classes-c-.git
or
git clone https://github.com/RokKos/classes-c-.git
Then go to the root folder of the project:
cd classes-c-/
Then create a build folder where your build and run tests.
mkdir -p build
cd build/
cmake ..
make -j8
../bin/tests
or you can run the bash script that does this automatically:
./run_all_test.sh
If all tests are green then you are good to go.
- Google Tests - Google's C++ test framework
- CMake - Cross-platform free and open-source software for managing the build process of software using a compiler-independent method
- RokKos - RokKos
This project is licensed under the MIT License - see the LICENSE file for details.