Information for developers
Building#
- 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
Building for release should be a bit more heavy on flags, for example:
meson setup -Db_lto=true -Db_thinlto_cache=true -Db_lto_mode=thin build --buildtype=release
Embedding it#
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.
C bindings#
At this time, no C bindings are provided. My downstream project needs them not, and pugixml has no C++ interface regardless.
Still, the public interface of this library is quite thin, so they can be easily introduced if so desired.
Versioning#
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 proper public releases, while even numbers are only for in-dev stages.