mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 16:39:00 +08:00
ef08720ac2
* [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>
23 lines
911 B
Diff
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'))
|