cemplateSimple C++ template engine |
git clone git://git.dimitrijedobrota.com/cemplate.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING |
README.md (1035B)
0 # cemplate
2 Simple C++ template engine
4 ## Description
6 This project aims to simplify the process of writing C++ code generating
7 programs. It provides basic primitives to describe the language constructs
8 without worrying about the indentation, opening and closing scopes and spacing.
10 The project is still in raw form, a proof of concept, just enough to work with
11 my other projects. It's not complete by any means, and there is probably going
12 to be a major reimagination some time in the future.
14 ## Dependencies
16 * CMake 3.14 or latter
17 * Compiler with C++20 support (tested on clang version 19.1.7)
20 ## Building and installing
22 See the [`BUILDING`](BUILDING.md) document.
25 ## Usage
27 > Please reference example folder for relevant usage examples.
30 ## Version History
32 * 0.2
33 * Bare-bones proof of concept
35 * 0.1
36 * Initial development phase
39 ## Contributing
41 See the [`CONTRIBUTING`](CONTRIBUTING.md) document.
44 ## License
46 This project is licensed under the MIT License - see the [`LICENSE`](LICENSE.md) file for details