all vendor libraries are all now installed in a contained vendor folder and in a way which is compatible with libconfig being used as a subproject
8 lines
339 B
Meson
8 lines
339 B
Meson
cli11_proj = subproject('cli11')
|
|
cli11_dep = cli11_proj.get_variable('CLI11_dep')
|
|
|
|
cli11_headers = cli11_proj.get_variable('cli11_headers')
|
|
cli11_impl_headers = cli11_proj.get_variable('cli11_impl_headers')
|
|
|
|
install_headers(cli11_headers, subdir: 'fourdst/vendor/CLI')
|
|
install_headers(cli11_impl_headers, subdir: 'fourdst/vendor/CLI/impl') |