From 05e1f5a52bffce1d49f497418e9d44ac7f1bcc89 Mon Sep 17 00:00:00 2001 From: jason Date: Fri, 22 Aug 2025 21:20:17 +0000 Subject: [PATCH] correct include path for include directory of D++ --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index e4d81ef..4a28373 100644 --- a/makefile +++ b/makefile @@ -25,7 +25,7 @@ else DPP_PATH = ../DPP DPP_BUILD_DIR = $(DPP_PATH)/build/library LIB_PATHS = $(DPP_BUILD_DIR) - INC_DIRS = -Iinclude -I../DPP/include/ + INC_DIRS = -Iinclude -I$(DPP_PATH)/include/ endif DPP_VERSION := $(or $(DPP_VERSION),10.1.4)# Fallback version if auto-detection fails