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

https://github.com/pbouamriou/tuto_mpl

MPL Tutorial
https://github.com/pbouamriou/tuto_mpl

cplusplus cpp03 cpp11 metaprogramming mpl

Last synced: 5 months ago
JSON representation

MPL Tutorial

Awesome Lists containing this project

README

          

# Goal

The purpose of this repository is to create a working base to prepare a presentation on the fundamentals of metaprogramming in c++.

Each step of the presentation is based on a portion of code that is implemented in this repository.

# Compilation

Compile all examples in C++11 and C++03:
```sh
make
```

Compile examples in C++11:
```sh
make c++11
```

Compile examples in C++03:
```sh
make c++03
```

# Tests

Run all tests (in C++11 and C++03):
```sh
make test
```

Run C++11 tests:
```sh
make test11
```

Run C++03 tests:
```sh
make test03
```

# License

MIT License