mirror of
https://github.com/wolfpld/tracy
synced 2025-05-01 13:13:53 +00:00
Remove vcpkg.
This commit is contained in:
parent
269c75103e
commit
35246b4191
4
.gitignore
vendored
4
.gitignore
vendored
@ -29,10 +29,6 @@ manual/t*.fdb_latexmk
|
|||||||
manual/t*.fls
|
manual/t*.fls
|
||||||
profiler/build/win32/packages
|
profiler/build/win32/packages
|
||||||
profiler/build/win32/Tracy.aps
|
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/
|
.deps/
|
||||||
.dirstamp
|
.dirstamp
|
||||||
/_*/**
|
/_*/**
|
||||||
|
@ -3,11 +3,6 @@
|
|||||||
|
|
||||||
set (ROOT_DIR "${CMAKE_CURRENT_LIST_DIR}/../")
|
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)
|
if(WIN32)
|
||||||
add_definitions(-DNOMINMAX -DWIN32_LEAN_AND_MEAN)
|
add_definitions(-DNOMINMAX -DWIN32_LEAN_AND_MEAN)
|
||||||
endif()
|
endif()
|
||||||
|
12
vcpkg.json
12
vcpkg.json
@ -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"
|
|
||||||
]
|
|
||||||
}
|
|
@ -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
|
|
Loading…
x
Reference in New Issue
Block a user