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)
1 # cemplate 2 3 Simple C++ template engine 4 5 ## Description 6 7 This project aims to simplify the process of writing C++ code generating 8 programs. It provides basic primitives to describe the language constructs 9 without worrying about the indentation, opening and closing scopes and spacing. 10 11 The project is still in raw form, a proof of concept, just enough to work with 12 my other projects. It's not complete by any means, and there is probably going 13 to be a major reimagination some time in the future. 14 15 ## Dependencies 16 17 * CMake 3.14 or latter 18 * Compiler with C++20 support (tested on clang version 19.1.7) 19 20 21 ## Building and installing 22 23 See the [`BUILDING`](BUILDING.md) document. 24 25 26 ## Usage 27 28 > Please reference example folder for relevant usage examples. 29 30 31 ## Version History 32 33 * 0.2 34 * Bare-bones proof of concept 35 36 * 0.1 37 * Initial development phase 38 39 40 ## Contributing 41 42 See the [`CONTRIBUTING`](CONTRIBUTING.md) document. 43 44 45 ## License 46 47 This project is licensed under the MIT License - see the [`LICENSE`](LICENSE.md) file for details 48