https://codeberg.org/interpeer/liberate.git
Raw File
Tip revision: 35fd7bebc4e97cfd89d2951c32e5c4f6a8e1b0ec authored by Jens Finkhaeuser on 13 October 2022, 11:42:39 UTC
Bump images again; conan profiles now include c++_shared libcxx
Tip revision: 35fd7be
meson_options.txt
option('log_backend', type: 'combo',
  choices: ['stderr', 'spdlog', 'loguru', 'plog'],
  value: 'stderr',
  description: '''The logging backend to use. This option can also be set via
-DLIBERATE_LOG_BACKEND=`...`. Possible values are `stderr` (the default),
`spdlog`, `loguru` and `plog`. See README.md for logging detail.''',
)
option('build_extras', type: 'boolean',
  value: true,
  description: '''Build extras such as tests, examples, etc.'''
)
back to top