vcpkg/ports/thorvg/install-tools.patch
rinechran 445385e1ae
[Thorvg] Update to 0.9.0 (#31401)
* feat : update thorvg 0.9.0

* doc : update baseline
2023-05-13 09:36:02 -07:00

23 lines
902 B
Diff

diff --git a/src/bin/svg2png/meson.build b/src/bin/svg2png/meson.build
index ed21489e..c3fb3188 100644
--- a/src/bin/svg2png/meson.build
+++ b/src/bin/svg2png/meson.build
@@ -4,4 +4,5 @@ executable('svg2png',
svg2png_src,
include_directories : headers,
cpp_args: compiler_flags,
- link_with : thorvg_lib)
+ link_with : thorvg_lib,
+ install : true, install_dir : get_option('bindir'))
diff --git a/src/bin/svg2tvg/meson.build b/src/bin/svg2tvg/meson.build
index a40111aa..a02f4b8a 100644
--- a/src/bin/svg2tvg/meson.build
+++ b/src/bin/svg2tvg/meson.build
@@ -4,4 +4,5 @@ executable('svg2tvg',
svg2tvg_src,
include_directories : headers,
cpp_args: compiler_flags,
- link_with : thorvg_lib)
+ link_with : thorvg_lib,
+ install : true, install_dir : get_option('bindir'))