From 05d5f76bf86e9bec17f4e0458f57cbf0c0078800 Mon Sep 17 00:00:00 2001 From: jason Date: Fri, 22 Aug 2025 21:09:56 +0000 Subject: [PATCH] correct include dir path for DPP --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 3bdbf89..e4d81ef 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/ + INC_DIRS = -Iinclude -I../DPP/include/ endif DPP_VERSION := $(or $(DPP_VERSION),10.1.4)# Fallback version if auto-detection fails