mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 20:14:37 +00:00
17 lines
314 B
Meson
17 lines
314 B
Meson
subloader_dep = []
|
|
|
|
if get_option('loaders').contains('svg') == true
|
|
subdir('svg')
|
|
message('Enable SVG Loader')
|
|
endif
|
|
|
|
if get_option('png') == true
|
|
subdir('png')
|
|
endif
|
|
|
|
subdir('raw')
|
|
|
|
loader_dep = declare_dependency(
|
|
dependencies: subloader_dep,
|
|
include_directories : include_directories('.'),
|
|
)
|