Skip to content

whalbawi/legatus

Repository files navigation

Legatus

Legatus is a C++ project legatus written in C++17.

Prerequisites

The project is built using CMake and requires version 3.20 or newer to work correctly.

Legatus takes a dependency on googletest for unit tests and is included in the source tree as a git submodule. Run the following to check out the module and make it available to the build system:

$ cd <path-to-legatus>
$ git submodule update --init

Building

Legatus is tested on Linux and macOS.

The following will generate the build system and then build all targets:

$ cd <path-to-legatus>
$ cmake -B build
$ cmake --build build

Tests

Start by building the unit tests executable:

$ cmake --build build --target legatus-tests

Now run the unit tests using CMake's ctest utility:

$ ctest --test-dir build -R unit-tests -V

Alternatively, run the tests executable directly:

$ ./build/legatus-tests

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published