From 6d0dc4508200c4eb960da98c79649150e46faca7 Mon Sep 17 00:00:00 2001 From: Xaymar Date: Fri, 16 Jan 2026 21:00:58 +0100 Subject: [PATCH] Add optional database support (can't build these directly) --- CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index c81350a..4c09dd7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,6 +115,13 @@ if(ENABLE_SSL) # wolfssl ) endif() +if(TRUE) # Database support + # PostGreSQL + find_package("libpqxx" OPTIONAL) + # MariaDB + find_package("libmariadb" OPTIONAL) +endif() + #--------------------------------------------------------------------------------# # Project #--------------------------------------------------------------------------------#