From 69b82903cd0c786b141841b4faf68fccaf89c582 Mon Sep 17 00:00:00 2001 From: Moritz Heinemann Date: Wed, 15 Nov 2023 14:41:45 +0100 Subject: [PATCH] Prefer internal imgui --- profiler/build/unix/build.mk | 2 +- profiler/build/unix/legacy.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/profiler/build/unix/build.mk b/profiler/build/unix/build.mk index b134432b..42a9ba0a 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 freetype2 capstone wayland-egl egl wayland-cursor xkbcommon) -I../../../imgui +INCLUDES := -I../../../imgui $(shell pkg-config --cflags freetype2 capstone wayland-egl egl wayland-cursor xkbcommon) LIBS := $(shell pkg-config --libs freetype2 capstone wayland-egl egl wayland-cursor xkbcommon) -lpthread -ldl PROJECT := Tracy 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