Remove vcpkg.

This commit is contained in:
Bartosz Taudul 2024-03-16 18:52:13 +01:00
parent 269c75103e
commit 35246b4191
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
4 changed files with 0 additions and 38 deletions

4
.gitignore vendored
View File

@ -29,10 +29,6 @@ manual/t*.fdb_latexmk
manual/t*.fls
profiler/build/win32/packages
profiler/build/win32/Tracy.aps
# include the vcpkg install script but not the files it produces
vcpkg/*
!vcpkg/install_vcpkg_dependencies.bat
/vcpkg_installed
.deps/
.dirstamp
/_*/**

View File

@ -3,11 +3,6 @@
set (ROOT_DIR "${CMAKE_CURRENT_LIST_DIR}/../")
if (EXISTS ${ROOT_DIR}/vcpkg_installed/x64-windows-static/lib/pkgconfig)
message(STATUS "Using vcpkg_installed/x64-windows-static/lib/pkgconfig")
set(ENV{PKG_CONFIG_PATH} "${ROOT_DIR}/vcpkg_installed/x64-windows-static/lib/pkgconfig")
endif()
if(WIN32)
add_definitions(-DNOMINMAX -DWIN32_LEAN_AND_MEAN)
endif()

View File

@ -1,12 +0,0 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
"name": "tracy",
"version-semver": "0.8.0",
"description": "C++ frame profiler",
"homepage": "https://github.com/wolfpld/tracy",
"dependencies": [
{ "name": "capstone", "features":[ "arm", "arm64", "x86" ] },
"freetype",
"glfw3"
]
}

View File

@ -1,17 +0,0 @@
@echo off
setlocal
pushd %~dp0
REM get vcpkg distribution
if not exist vcpkg git clone https://github.com/Microsoft/vcpkg.git || exit /b 1
REM build vcpkg
if not exist vcpkg\vcpkg.exe call vcpkg\bootstrap-vcpkg.bat -disableMetrics || exit /b 2
set VCPKG_ROOT=%cd%\vcpkg
REM install required packages
vcpkg\vcpkg.exe install --triplet x64-windows-static || exit /b 3
popd