thorvg/src/savers/meson.build
Mira Grudzinska 568846491d build: enforcing saver/loader usage for given tool
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.
2024-04-19 10:01:30 +09:00

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('.'),
)