/ProjectEuler

C++ solutions to project euler problems.

Primary LanguageC++MIT LicenseMIT

ProjectEuler

C++ solutions to Project Euler problems.

Table of Contents

Dependencies

The following dependencies are mandatory:

  • C++ compiler
  • CMake (3.12 or greater)

Building

Example snippet for building this project:

mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX="/apps/ProjectEuler/" ..
cmake --build  . -- VERBOSE=1 -j8 all test install

CMake options for configuring this project:

CMake Variable name Description Default
BUILD_TESTING Enable automated testing. OFF