mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-19 06:21:45 +00:00
10 lines
218 B
Meson
10 lines
218 B
Meson
subbinding_dep = []
|
|
|
|
if get_option('bindings').contains('capi') == true
|
|
subdir('capi')
|
|
endif
|
|
|
|
binding_dep = declare_dependency(
|
|
dependencies: subbinding_dep,
|
|
include_directories : include_directories('.'),
|
|
)
|