An open API service indexing awesome lists of open source software.

https://github.com/prophetru/metaprogrammingsfinae

Educational project
https://github.com/prophetru/metaprogrammingsfinae

cmake cpp doxygen otus

Last synced: about 1 year ago
JSON representation

Educational project

Awesome Lists containing this project

README

          

# Metaprogramming SFINAE
Educational project with [Doxygen](https://github.com/doxygen/doxygen)

## Build local Linux
```shell
sudo apt-get update && sudo apt-get install cmake -y

cd MetaprogrammingSFINAE
mkdir build && cd build

cmake ..

# build release
cmake --build . --config Release

# build deb-package
cmake --build . --target package
```

## Build local Windows
```shell
cd MetaprogrammingSFINAE
mkdir build && cd build

cmake ..

# build release
cmake --build . --config Release
```

## Documentation
[Documentation](https://prophetru.github.io/MetaprogrammingSFINAE)