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
- Host: GitHub
- URL: https://github.com/prophetru/metaprogrammingsfinae
- Owner: ProphetRu
- License: apache-2.0
- Created: 2024-02-01T08:27:52.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-01T12:56:16.000Z (over 2 years ago)
- Last Synced: 2025-02-17T22:34:49.808Z (over 1 year ago)
- Topics: cmake, cpp, doxygen, otus
- Language: C++
- Homepage:
- Size: 162 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)