mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-21 07:22:23 +00:00

Selecting a tool without choosing the required tools resulted in a usage error. Now, the activation of the appropriate saver/loader for a given tool is enforced.
14 lines
211 B
Meson
14 lines
211 B
Meson
subsaver_dep = []
|
|
|
|
if tvg_saver
|
|
subdir('tvg')
|
|
endif
|
|
|
|
if gif_saver
|
|
subdir('gif')
|
|
endif
|
|
|
|
saver_dep = declare_dependency(
|
|
dependencies: subsaver_dep,
|
|
include_directories : include_directories('.'),
|
|
)
|