Using tclap library, released under MIT. This adds the meson wrap file along with the minimal custom meson.build for tclap, all the meson code to get config files generated and the integration of the tclap parser.
16 lines
294 B
Meson
16 lines
294 B
Meson
project('tclap', 'cpp',
|
|
version: '1.4.0',
|
|
meson_version: '>=0.55.0',
|
|
default_options: [
|
|
'buildtype=release',
|
|
'cpp_std=gnu++11',
|
|
'b_ndebug=if-release',
|
|
],
|
|
license: 'MIT',
|
|
)
|
|
|
|
pub_inc = include_directories('include')
|
|
|
|
tclap_dep = declare_dependency(
|
|
include_directories: pub_inc,
|
|
)
|