feat(CLI): CLI integration with CLI11

libconfig can automatically generate command line interfaces using CLI11 based on some schema
This commit is contained in:
2026-02-02 08:41:47 -05:00
parent b034fb6746
commit 68cba402f3
11 changed files with 531 additions and 9 deletions

View File

@@ -1,4 +1,5 @@
executable('simple_config_test', 'simple.cpp', dependencies: [config_dep])
executable('cli_example', 'cli_example.cpp', dependencies: [config_dep, cli11_dep])
if meson.is_cross_build() and host_machine.system() == 'wasm'
executable('simple_config_wasm_test', 'wasm.cpp', dependencies: [config_dep])