Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-06-04 17:44:27 +0300
committerGitHub <noreply@github.com>2022-06-04 17:44:27 +0300
commit411b3137b5d9dadf480b81082571b30041a33658 (patch)
treef2168c6dabd872f9f4c89d60353aa9ccf9c39284 /manual
parent958089794bc028d9dba8f3687774e03b7a3b0b7b (diff)
parent4efcb8c3f5a0a24b71a9e9c28cb08d8ce2f72cb1 (diff)
Merge pull request #365 from theblackunknown/msvc+vcpkg-manifest
Using vcpkg manifest for Windows
Diffstat (limited to 'manual')
-rw-r--r--manual/tracy.tex6
1 files changed, 4 insertions, 2 deletions
diff --git a/manual/tracy.tex b/manual/tracy.tex
index 705dc906..95f8ec43 100644
--- a/manual/tracy.tex
+++ b/manual/tracy.tex
@@ -748,11 +748,13 @@ There are two ways you can run \texttt{vcpkg} to install the dependencies for Tr
vcpkg\install_vcpkg_dependencies.bat
\end{lstlisting}
This writes files only to the \texttt{vcpkg\textbackslash{}vcpkg} directory and makes no other changes on your machine.
-\item System-wide installation -- install \texttt{vcpkg} by following the instructions on its website, and then execute the following commands:
+\item System-wide installation with Manifest mode -- install \texttt{vcpkg} by following the instructions on its website, make sure that the environment variable \texttt{VCPKG\_ROOT} is set to the path where you have clone the repository, and then execute the following command:
\begin{lstlisting}[language=sh]
vcpkg integrate install
-vcpkg install --triplet x64-windows-static freetype glfw3 capstone[arm,arm64,x86]
\end{lstlisting}
+After this step, you can use any Visual Studio project files to build as usual.
+Dependencies will be installed automatically based on vcpkg manifest listing (the \texttt{vcpkg.json} file at repository root).
+For more information about vcpkg manifest mode in Visual Studio, you can read more details at the following address: \url{https://vcpkg.io/en/docs/users/manifests.html#msbuild-integration}.
\end{itemize}
\paragraph{Unix}