From a49638e9a69ad7f2717129e083f1fffd5ccd2afd Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 26 Mar 2020 00:18:08 +0100 Subject: [PATCH] Link with capstone on unix. --- profiler/build/unix/build.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profiler/build/unix/build.mk b/profiler/build/unix/build.mk index 57eb9ed8..20a5ffa8 100644 --- a/profiler/build/unix/build.mk +++ b/profiler/build/unix/build.mk @@ -1,8 +1,8 @@ CFLAGS += CXXFLAGS := $(CFLAGS) -std=c++17 DEFINES += -DTRACY_FILESELECTOR -DTRACY_EXTENDED_FONT -DTRACY_ROOT_WINDOW -DIMGUI_IMPL_OPENGL_LOADER_GL3W -INCLUDES := $(shell pkg-config --cflags glfw3 freetype2) -I../../../imgui -I../../libs/gl3w -LIBS := $(shell pkg-config --libs glfw3 freetype2) -lpthread -ldl +INCLUDES := $(shell pkg-config --cflags glfw3 freetype2 capstone) -I../../../imgui -I../../libs/gl3w +LIBS := $(shell pkg-config --libs glfw3 freetype2 capstone) -lpthread -ldl PROJECT := Tracy IMAGE := $(PROJECT)-$(BUILD)