From 1730ffe44c922b115456b21e1d0e68926244614b Mon Sep 17 00:00:00 2001 From: Harvey Fong Date: Sun, 4 Jan 2026 04:15:43 +0000 Subject: [PATCH] fix missing sqlite include and lib path --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e4efe22..fecf3da 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,7 @@ endif # Common include and library paths #INCLUDE_PATHS = -I$(DPP_PATH)/include -I../sqlite3 -INCLUDE_PATHS = -I$(DPP_PATH)/include +INCLUDE_PATHS = -I$(DPP_PATH)/include -I../sqlite3 DPP_BUILD_DIR = $(DPP_PATH)/build/library # Platform-specific versioned library filename @@ -65,7 +65,7 @@ endif # Library flags #LIB_PATHS = -L$(DPP_BUILD_DIR) -L../sqlite3 -LIB_PATHS = -L$(DPP_BUILD_DIR) -L../libssl -L. +LIB_PATHS = -L$(DPP_BUILD_DIR) -L../libssl -L../sqlite3 -L. LIBRARIES = -ldpp -lsqlite3 -lssl -lcrypto # Build type specific flags