mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
6 lines
247 B
Meson
6 lines
247 B
Meson
project('clap', 'cpp', version : '1.1.1')
|
|
|
|
# Without the `is_system` we'd get warnings about `CLAP_EXPORT` on `clap_entry`
|
|
# not doing anything.
|
|
clap_dep = declare_dependency(include_directories : include_directories('include', is_system : true))
|