mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-29 20:23:55 +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
12 lines
324 B
Meson
12 lines
324 B
Meson
project('CLI11', ['cpp'],
|
|
version : run_command(find_program('scripts/ExtractVersion.py')).stdout().strip(),
|
|
default_options : ['cpp_std=c++11']
|
|
)
|
|
|
|
CLI11_inc = include_directories(['include'])
|
|
|
|
CLI11_dep = declare_dependency(
|
|
include_directories : CLI11_inc,
|
|
version : meson.project_version(),
|
|
)
|