forked from wolfpld/tracy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Vcpkg manifest + MSBuild integration
- Loading branch information
1 parent
0a432ed
commit adcfe4d
Showing
8 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,6 @@ jobs: | |
- uses: microsoft/[email protected] | ||
- name: Integrate vcpkg | ||
run: vcpkg integrate install | ||
- name: Build vcpkg libraries | ||
run: vcpkg install freetype glfw3 capstone[arm,arm64,x86] --triplet x64-windows-static | ||
- name: Profiler GUI Debug | ||
run: msbuild .\profiler\build\win32\Tracy.vcxproj /property:Configuration=Debug /property:Platform=x64 | ||
- name: Profiler GUI Release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"$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", | ||
"builtin-baseline": "af2287382b1991dbdcb7e5112d236f3323b9dd7a", | ||
"dependencies": [ | ||
{ "name": "capstone", "features":[ "arm", "arm64", "x86" ] }, | ||
"freetype", | ||
"glfw3" | ||
] | ||
} |