mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
b05c2f5327
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.
11 lines
316 B
Batchfile
11 lines
316 B
Batchfile
@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]
|