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/vcpkg
diff options
context:
space:
mode:
authorDavid Farrell <dafarrel@adobe.com>2020-04-21 20:52:25 +0300
committerDavid Farrell <dafarrel@adobe.com>2020-04-21 20:52:25 +0300
commitb05c2f5327f4afa8b861642872370fd54f1249b5 (patch)
treebcb74db5dd780c709a125da6c057d951d49d384d /vcpkg
parent865593146ab71d7fb9da30a01c6482fa6ad10b18 (diff)
Added install_vcpkg_dependencies.bat to set up dependencies
This script will build both vcpkg and the dependencies needed by Tracy. It puts everything in the vcpkg/vcpkg directory, and changes no other state on the machine. It is perfectly safe to erase the vcpkg/vcpkg directory and re-run the script to build the dependencies again, although that should only be needed once. To add new vcpkg dependencies, just modify the 'vcpkg install ...' line in the .bat file.
Diffstat (limited to 'vcpkg')
-rw-r--r--vcpkg/install_vcpkg_dependencies.bat10
1 files changed, 10 insertions, 0 deletions
diff --git a/vcpkg/install_vcpkg_dependencies.bat b/vcpkg/install_vcpkg_dependencies.bat
new file mode 100644
index 00000000..089c389c
--- /dev/null
+++ b/vcpkg/install_vcpkg_dependencies.bat
@@ -0,0 +1,10 @@
+@echo off
+
+REM get vcpkg distribution
+if not exist vcpkg git clone https://github.com/Microsoft/vcpkg.git
+
+REM build vcpkg
+if not exist vcpkg\vcpkg.exe call vcpkg\bootstrap-vcpkg.bat
+
+REM install required packages
+vcpkg\vcpkg.exe install --triplet x64-windows-static freetype glfw3 capstone[arm,arm64,x86]