mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 12:49:00 +08:00
445385e1ae
* feat : update thorvg 0.9.0 * doc : update baseline
23 lines
902 B
Diff
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'))
|