mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 22:09:00 +08:00
fa32c6acbd
* [tracy] Fix imgui search path for Linux build * update port-version
14 lines
536 B
Diff
14 lines
536 B
Diff
diff --git a/profiler/build/unix/build.mk b/profiler/build/unix/build.mk
|
|
index 24765f1a..dc2923c8 100644
|
|
--- a/profiler/build/unix/build.mk
|
|
+++ b/profiler/build/unix/build.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
|