moddyz / CXXSandbox

Sandbox for experimenting with the C++ language.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CXXSandbox

Sandbox for experimenting with C++ language and commonly used libraries.

Table of Contents

Dependencies

The following dependencies are mandatory:

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

Building

Example snippet for building this project:

mkdir build && cd build
cmake -DBUILD_TESTING=ON -DCMAKE_INSTALL_PREFIX="/apps/CXXSandbox/" ..
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
BUILD_BENCHMARKING Enable automated benchmarking. OFF

About

Sandbox for experimenting with the C++ language.

License:MIT License


Languages

Language:C++ 86.8%Language:CMake 13.2%