mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-30 20:53:52 +00:00
* meson: Basic meson support With this patch, CLI11 can be used as a meson subproject: http://mesonbuild.com/Subprojects.html However, CMake is still required for testing and installation. The current meson.build is not a complete replacement. * meson: Added meson test * Adding Azure test
6 lines
201 B
Meson
6 lines
201 B
Meson
project('mesonTest', ['c', 'cpp'], default_options: ['cpp_std=c++11'])
|
|
|
|
cli11_dep = subproject('CLI11').get_variable('CLI11_dep')
|
|
|
|
mainExe = executable('main', ['main.cpp'], dependencies: [cli11_dep])
|