2020-02-24 20:39:13 +00:00
|
|
|
|
# Contributing to toml++
|
|
|
|
|
Contributions are very welcome! Either by [reporting issues] or submitting pull requests.
|
|
|
|
|
If you wish to submit a PR, please be aware that:
|
|
|
|
|
- The single-header file `toml.hpp` is generated by a script; make your changes in the files in
|
|
|
|
|
`include`, **not** in `toml.hpp`.
|
2021-10-29 13:28:04 +00:00
|
|
|
|
- Your changes should compile warning-free on at least one of:
|
|
|
|
|
- GCC 8 or higher
|
|
|
|
|
- Clang 8 or higher
|
|
|
|
|
- MSVC 19.2X (Visual Studio 2019) or higher
|
2020-02-24 20:39:13 +00:00
|
|
|
|
- You should regenerate the single-header file as part of your PR (a CI check will fail if you don't).
|
|
|
|
|
|
2020-04-01 12:53:10 +00:00
|
|
|
|
<br>
|
|
|
|
|
|
|
|
|
|
## Regenerating toml.hpp
|
2020-02-24 20:39:13 +00:00
|
|
|
|
1. Make your changes as necessary
|
2020-04-01 12:53:10 +00:00
|
|
|
|
- If you've added a new header file that isn't going to be transitively included by one of the
|
|
|
|
|
others, add an include directive to `include/toml++/toml.h`
|
2021-04-18 12:04:46 +00:00
|
|
|
|
2. Install the prerequisite python packages: `pip3 install -r tools/requirements.txt`
|
|
|
|
|
3. Run `tools/generate_single_header.py`
|
2020-02-24 20:39:13 +00:00
|
|
|
|
|
2020-04-01 12:53:10 +00:00
|
|
|
|
<br>
|
|
|
|
|
|
|
|
|
|
## Building and running the tests
|
2022-05-01 12:09:09 +00:00
|
|
|
|
Testing is done using [Catch2].
|
2020-02-24 20:39:13 +00:00
|
|
|
|
|
2020-04-01 12:53:10 +00:00
|
|
|
|
### Testing on Windows with Visual Studio
|
2020-02-24 20:39:13 +00:00
|
|
|
|
|
2022-01-03 18:51:03 +00:00
|
|
|
|
Install [Visual Studio] and [Test Adapter for Catch2], then open `toml++.sln` and build the
|
2020-02-24 20:39:13 +00:00
|
|
|
|
projects in the `tests` solution folder. Visual Studio's Test Explorer should pick these up and
|
|
|
|
|
allow you to run the tests directly.
|
|
|
|
|
|
2020-04-01 12:53:10 +00:00
|
|
|
|
If test discovery fails you can usually fix it by enabling
|
2020-02-24 20:39:13 +00:00
|
|
|
|
`Auto Detect runsettings Files` (settings gear icon > `Configure Run Settings`).
|
|
|
|
|
|
2020-04-01 12:53:10 +00:00
|
|
|
|
### Testing on Linux (and WSL)
|
2020-02-24 20:39:13 +00:00
|
|
|
|
```bash
|
2020-08-20 11:03:14 +00:00
|
|
|
|
# install ninja, meson, locales (first time only)
|
|
|
|
|
sudo apt update && sudo apt install -y locales python3 python3-pip ninja-build
|
|
|
|
|
sudo pip3 install meson
|
2020-09-05 10:26:12 +00:00
|
|
|
|
sudo locale-gen 'en_US.utf8' \
|
|
|
|
|
'ja_JP.utf8' \
|
|
|
|
|
'de_DE.utf8' \
|
|
|
|
|
'it_IT.utf8' \
|
|
|
|
|
'tr_TR.utf8' \
|
|
|
|
|
'fi_FI.utf8' \
|
|
|
|
|
'fr_FR.utf8' \
|
|
|
|
|
'zh_CN.utf8'
|
2020-08-20 11:03:14 +00:00
|
|
|
|
|
2020-07-30 20:31:08 +00:00
|
|
|
|
# create the build configs (first time only)
|
2020-09-05 10:26:12 +00:00
|
|
|
|
CXX=g++ meson build-gcc-debug --buildtype=debug -Dpedantic=true -Dbuild_tests=true -Dgenerate_cmake_config=false
|
|
|
|
|
CXX=clang++ meson build-clang-debug --buildtype=debug -Dpedantic=true -Dbuild_tests=true -Dgenerate_cmake_config=false
|
|
|
|
|
CXX=g++ meson build-gcc-release --buildtype=release -Dpedantic=true -Dbuild_tests=true -Dgenerate_cmake_config=false
|
|
|
|
|
CXX=clang++ meson build-clang-release --buildtype=release -Dpedantic=true -Dbuild_tests=true -Dgenerate_cmake_config=false
|
2020-07-30 20:31:08 +00:00
|
|
|
|
|
|
|
|
|
# run the tests
|
2020-09-05 10:26:12 +00:00
|
|
|
|
cd build-gcc-debug && ninja && ninja test \
|
|
|
|
|
&& cd ../build-clang-debug && ninja && ninja test \
|
|
|
|
|
&& cd ../build-gcc-release && ninja && ninja test \
|
|
|
|
|
&& cd ../build-clang-release && ninja && ninja test \
|
|
|
|
|
&& cd ..
|
2020-02-24 20:39:13 +00:00
|
|
|
|
```
|
|
|
|
|
|
2022-05-01 12:09:09 +00:00
|
|
|
|
> ℹ️ To ensure parity between single-header and regular versions of the library, 50% of the tests
|
2022-04-23 14:28:25 +00:00
|
|
|
|
will be compiled using one, and 50% with the other. Ensure you've regenerated toml.hpp before running tests.
|
|
|
|
|
|
2022-05-01 12:09:09 +00:00
|
|
|
|
> ℹ️ Pass `-Duse_vendored_libs=false` to meson if you wish to use the system-installed version
|
|
|
|
|
of Catch2 rather than the vendored one.
|
|
|
|
|
|
2022-01-03 18:51:03 +00:00
|
|
|
|
<br>
|
|
|
|
|
|
|
|
|
|
## Testing with the [toml-test] suite
|
|
|
|
|
As an optional extra you may wish to test against the 'official' test TOML test suite, [BurntSushi/toml-test]. See the
|
|
|
|
|
instructions at [toml-test/README](./toml-test/README.md). Note that the toml++ tests already consume tests from the
|
|
|
|
|
offical suite via a C++ code-generation script so you are not expected to take this extra step as part of contributing
|
|
|
|
|
to the library.
|
2020-07-30 20:31:08 +00:00
|
|
|
|
|
2021-11-07 14:35:31 +00:00
|
|
|
|
[Visual Studio]: https://visualstudio.microsoft.com/vs/
|
2020-02-24 20:39:13 +00:00
|
|
|
|
[Test Adapter for Catch2]: https://marketplace.visualstudio.com/items?itemName=JohnnyHendriks.ext01
|
|
|
|
|
[reporting issues]: https://github.com/marzer/tomlplusplus/issues
|
|
|
|
|
[Catch2]: https://github.com/catchorg/Catch2
|
|
|
|
|
[meson]: https://mesonbuild.com/Getting-meson.html
|
|
|
|
|
[ninja]: https://github.com/ninja-build/ninja/wiki/Pre-built-Ninja-packages
|
2022-01-03 18:51:03 +00:00
|
|
|
|
[toml-test]: https://github.com/BurntSushi/toml-test
|
|
|
|
|
[BurntSushi/toml-test]: https://github.com/BurntSushi/toml-test
|