vcpkg/ports/thorvg/install-tools.patch
Park DongHa ef08720ac2
[thorvg] create a new port (#27525)
* [thorvg] create a new port

* [thorvg] update baseline

* [thorvg] fix windows install

* [thorvg] disable arm-uwp

* [thorvg] use DEBUG/RELEASE options for bindir

* Update ports/thorvg/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* [thorvg] update git-tree SHA

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
2022-10-31 17:02:52 -07:00

23 lines
911 B
Diff

diff --git a/src/bin/svg2png/meson.build b/src/bin/svg2png/meson.build
index 8011410..40cf3f9 100644
--- a/src/bin/svg2png/meson.build
+++ b/src/bin/svg2png/meson.build
@@ -3,4 +3,5 @@ svg2png_src = files('svg2png.cpp', 'lodepng.cpp')
executable('svg2png',
svg2png_src,
include_directories : headers,
- 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 2df9fac..ffd5a20 100644
--- a/src/bin/svg2tvg/meson.build
+++ b/src/bin/svg2tvg/meson.build
@@ -3,4 +3,5 @@ svg2tvg_src = files('svg2tvg.cpp')
executable('svg2tvg',
svg2tvg_src,
include_directories : headers,
- link_with : thorvg_lib)
+ link_with : thorvg_lib,
+ install : true, install_dir : get_option('bindir'))