caiwan / ThreadpoolPOC

PROOF-OF-CONCEPT Thread pool library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CMake boilerplate project

Boilerplate project for application built with CMake.

Features

  • Testing with GTest
  • Sample for download external dependencies using ExternalProject_Add
  • Sample for pure CMake project Assimp as external dependency
  • Sample for non-CMake single-header library stb as external dependency

Usage

Configure project

mkdir build
cmake ../

Execute target ExternalDependencies to download and compile all the dependencies

cmake --build ./ --target ExternalDependencies --config Debug

And / or compile and install the rest of the project optimized for release with MinSizeRel

cmake --build ./ --target Install --config MinSizeRel

Testing

TBD

About

PROOF-OF-CONCEPT Thread pool library


Languages

Language:CMake 59.1%Language:C++ 36.6%Language:C 4.0%Language:Batchfile 0.3%