2021-05-09 16:27:08 +00:00
|
|
|
# this is a config file for Poxy - a Doxygen + m.css front-end written in Python.
|
|
|
|
# https://github.com/marzer/poxy
|
|
|
|
|
2021-05-06 08:03:25 +00:00
|
|
|
name = 'toml++'
|
2021-05-19 11:36:25 +00:00
|
|
|
author = 'Mark Gillard'
|
2021-05-06 08:03:25 +00:00
|
|
|
description = 'TOML for modern C++'
|
|
|
|
cpp = 17
|
|
|
|
github = 'marzer/tomlplusplus'
|
|
|
|
license = [ 'MIT', 'https://github.com/marzer/tomlplusplus/blob/master/LICENSE' ]
|
|
|
|
show_includes = false
|
|
|
|
logo = 'images/logo.png'
|
|
|
|
favicon = 'images/favicon.ico'
|
|
|
|
navbar = [ 'namespaces', 'annotated' ]
|
|
|
|
extra_files = [
|
|
|
|
'images/banner_small.png',
|
|
|
|
'images/badge-awesome.svg',
|
|
|
|
'images/badge-TOML.svg',
|
|
|
|
'images/badge-C++20.svg'
|
|
|
|
]
|
|
|
|
|
2021-05-09 16:27:08 +00:00
|
|
|
|
|
|
|
|
2021-05-06 08:03:25 +00:00
|
|
|
[warnings]
|
2021-05-09 16:27:08 +00:00
|
|
|
enabled = true
|
|
|
|
treat_as_errors = false
|
|
|
|
undocumented = true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[sources]
|
|
|
|
paths = [ 'pages' ]
|
|
|
|
recursive_paths = [ '../include' ]
|
|
|
|
patterns = [ '*.h', '*.dox' ]
|
|
|
|
strip_paths = [ '../include' ]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[images]
|
|
|
|
paths = [ 'images' ]
|
2021-05-06 08:03:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-05-14 12:47:35 +00:00
|
|
|
[macros]
|
2021-05-06 08:03:25 +00:00
|
|
|
'TOML_ASYMMETRICAL_EQUALITY_OPS(...)' = 'static_assert(true)'
|
|
|
|
'TOML_ABI_NAMESPACE_START(...)' = 'static_assert(true)'
|
|
|
|
'TOML_ABI_NAMESPACE_BOOL(...)' = 'static_assert(true)'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[meta_tags]
|
|
|
|
'google-site-verification' = 'gbtcNgKlNiPSMKkYMw4zWFVWGPH_oU93m9n_-nb4qK8'
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-05-09 16:27:08 +00:00
|
|
|
[code_blocks]
|
|
|
|
macros = [ 'TOML_[A-Z0-9_]+?', 'print_value' ]
|
|
|
|
string_literals = [ '_toml' ]
|
2021-05-06 08:03:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[badges]
|
2021-05-09 16:27:08 +00:00
|
|
|
'1. C++20' = [
|
|
|
|
'badge-C++20.svg',
|
|
|
|
'https://en.cppreference.com/w/cpp/compiler_support'
|
|
|
|
]
|
|
|
|
'2. TOML v1.0.0' = [
|
|
|
|
'badge-TOML.svg',
|
|
|
|
'https://toml.io/en/v1.0.0'
|
|
|
|
]
|
|
|
|
'3. CircleCI' = [
|
|
|
|
'https://img.shields.io/circleci/build/github/marzer/tomlplusplus?label=circle%20ci&logo=circleci&logoColor=white&style=flat-square',
|
|
|
|
'https://circleci.com/gh/marzer/tomlplusplus'
|
|
|
|
]
|
|
|
|
'4. Mentioned in Awesome C++' = [
|
|
|
|
'badge-awesome.svg',
|
|
|
|
'https://github.com/fffaraz/awesome-cpp'
|
|
|
|
]
|
2021-05-06 08:03:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[autolinks]
|
2021-05-09 16:27:08 +00:00
|
|
|
'(?:toml::)?parse[_ ]results?' = 'classtoml_1_1parse__result.html'
|
|
|
|
'(?:toml::)?parse[_ ]errors?' = 'classtoml_1_1parse__error.html'
|
|
|
|
'(?:toml::)?node[_ ]views?' = 'classtoml_1_1node__view.html'
|
|
|
|
'(?:toml::)?json[_ ]formatters?' = 'classtoml_1_1json__formatter.html'
|
2021-05-06 08:03:25 +00:00
|
|
|
'(?:toml::)?default[_ ]formatters?' = 'classtoml_1_1default__formatter.html'
|
2021-05-09 16:27:08 +00:00
|
|
|
'(?:toml::)?source[_ ]positions?' = 'structtoml_1_1source__position.html'
|
|
|
|
'(?:toml::)?source[_ ]regions?' = 'structtoml_1_1source__region.html'
|