Go to file
2023-12-07 21:40:05 -06:00
src Added checking arguments and a help message 2023-12-07 21:36:51 -06:00
test Added book for testing 2023-12-07 20:29:32 -06:00
.gitignore Initial commit 2023-11-14 14:34:06 -06:00
CMakeLists.txt Adjusted names for project 2023-11-14 14:36:09 -06:00
LICENSE Initial commit 2023-11-14 14:34:06 -06:00
README.md Adjusted names for project 2023-11-14 14:36:09 -06:00

markov-generator

Compiling the project

Prerequisites

  • C++11

In order to compile the project, simply run these two commands:

cmake -B build -S .
cmake --build build

Running the Project

The program should now be compiled at build/bin/something

Simply run the program using:

build/bin/markov

Testing the Project

Prerequisites

In order to compile the tests for the project, simply run these two commands:

cmake -DCMAKE_BUILD_TYPE=Debug -B build -S .
cmake --build build

The program should now be compiled at build/bin/tests

Simply run the tests using:

build/bin/tests