title |
---|
Information for developers |
- A modern C++ toolchain supporting C++20
meson
as the build system of choicepandoc
(optional) if you want to generate the documentation/man pagesnot in use right now, when frozen will be removed this is its replacement.gperf
(optional) if you want to regenerate the command dispatchersvalgrind
(optional) to run some tests
To build, test and install it you can just use normal meson commands like.
meson setup build
meson compile -C build
meson install -C build
At this time, this repository is only available as a meson package.
I might consider adding cmake
later on to gain a wider compatibility.
If pugixml
is already provided as a dependency in the main project, that will be used.
vs.templ requires you implement some features downstream to support all features.
If not provided, the library will still be usable, but the command tags include
and data
will not work as expected.
The CLI in src/app
shows everything that is needed to use vs.templ as a library.
At this time, no C bindings are provided. My downstream project needs not them, and pugixml is C++ only.
Still, the public interface of this library is quite thin, so they can be easily introduced if so desired.
Releases are tagged on the repo, with master
as the main development branch.
Semantic versioning will be followed after v1.0.0
.
Before that, any release can and will have breaking changes.
Versions ending with an odd revision number are meant for proper for releases, while even numbers are only for in-dev stages.