https://codeberg.org/interpeer/liberate.git
Raw File
Tip revision: 8b54e65d8419772e0721c969273aec91961c41f3 authored by Jens Finkhaeuser on 04 May 2023, 07:42:04 UTC
Migrate clone changes over from s3kr1t
Tip revision: 8b54e65
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