forked from microsoft/vcpkg
-
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.
vcpkg - make it compatible with non wayland systems (microsoft#31520)
- Loading branch information
Showing
5 changed files
with
22 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/profiler/build/unix/legacy.mk b/profiler/build/unix/legacy.mk | ||
index 24765f1a..dc2923c8 100644 | ||
--- a/profiler/build/unix/legacy.mk | ||
+++ b/profiler/build/unix/legacy.mk | ||
@@ -1,7 +1,7 @@ | ||
CFLAGS += | ||
CXXFLAGS := $(CFLAGS) -std=c++17 | ||
DEFINES += -DIMGUI_ENABLE_FREETYPE | ||
-INCLUDES := $(shell pkg-config --cflags glfw3 freetype2 capstone) -I../../../imgui | ||
+INCLUDES := -I../../../imgui $(shell pkg-config --cflags glfw3 freetype2 capstone) | ||
LIBS := $(shell pkg-config --libs glfw3 freetype2 capstone) -lpthread -ldl | ||
|
||
PROJECT := Tracy |
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