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
- Host: GitHub
- URL: https://github.com/pbouamriou/tuto_mpl
- Owner: pbouamriou
- License: mit
- Created: 2020-09-25T21:53:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-12T11:03:31.000Z (over 5 years ago)
- Last Synced: 2025-01-20T18:33:23.824Z (over 1 year ago)
- Topics: cplusplus, cpp03, cpp11, metaprogramming, mpl
- Language: C++
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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