From 69b342e3e906d4b157e0ad4bc264c11ab374cd64 Mon Sep 17 00:00:00 2001 From: rinechran Date: Tue, 29 Nov 2022 22:37:59 +0900 Subject: [PATCH] docs : Installing thorvg using vcpkg --- README.md | 52 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 34 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index ddbd358c..0d509b3b 100644 --- a/README.md +++ b/README.md @@ -35,24 +35,27 @@ ThorVG has the threading mechanism so that it tries to acquire the next scenes w
## Contents -- [Building ThorVG](#building-thorvg) - - [Meson Build](#meson-build) -- [Quick Start](#quick-start) -- [SVG](#svg) -- [TVG Picture](#tvg-picture) -- [Practices](#practices) - - [Tizen](#tizen) - - [Rive](#rive) - - [Godot](#godot) -- [Examples](#examples) -- [Documentation](#documentation) -- [Tools](#tools) - - [ThorVG Viewer](#thorvg-viewer) - - [SVG to PNG](#svg-to-png) - - [SVG to TVG](#svg-to-tvg) -- [API Bindings](#api-bindings) -- [Dependencies](#dependencies) -- [Issues or Feature Requests](#issues-or-feature-requests) +- [ThorVG](#thorvg) + - [Contents](#contents) + - [Building ThorVG](#building-thorvg) + - [Meson Build](#meson-build) + - [Quick Start](#quick-start) + - [SVG](#svg) + - [TVG Picture](#tvg-picture) + - [Practices](#practices) + - [Tizen](#tizen) + - [Rive](#rive) + - [Godot](#godot) + - [Examples](#examples) + - [Installing thorvg using vcpkg](#installing-thorvg-using-vcpkg) + - [Documentation](#documentation) + - [Tools](#tools) + - [ThorVG Viewer](#thorvg-viewer) + - [SVG to PNG](#svg-to-png) + - [SVG to TVG](#svg-to-tvg) + - [API Bindings](#api-bindings) + - [Dependencies](#dependencies) + - [Issues or Feature Requests](#issues-or-feature-requests) [](#contents)
@@ -273,6 +276,19 @@ install this package from your OS distribution server. Otherwise, please visit t [Back to contents](#contents)

+ +## Installing thorvg using vcpkg + +You can download and install thorvg using the vcpkg dependency manager + +``` +git clone https://github.com/Microsoft/vcpkg.git +cd vcpkg +./bootstrap-vcpkg.sh +./vcpkg integrate install +./vcpkg install thorvg +``` + ## Documentation ThorVG API documentation is available at [thorvg.org/apis](https://www.thorvg.org/apis), and can also found in the [docs](/docs) folder of this repo.