From 0e825d3b931cb54bc56969eb5db842c5c3eb64da Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Wed, 22 Nov 2023 09:10:18 +0100 Subject: [PATCH] Disable system-toml support for now. (Latest version is incompatible with the one that's included here.) --- CMakeLists.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e625a563..8cf7e239 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -75,13 +75,13 @@ if(NOT SQLite3_FOUND) message(ERROR "-- sqlite3 library not found (required)") endif() -find_package(tomlplusplus QUIET) -if (tomlplusplus_FOUND) - message(STATUS "Using system TOML++") - set(HAVE_TOMLPLUSPLUS 1) -else() - message(STATUS "Using included TOML++") -endif() +#find_package(tomlplusplus QUIET) +#if (tomlplusplus_FOUND) +# message(STATUS "Using system TOML++") +# set(HAVE_TOMLPLUSPLUS 1) +#else() +# message(STATUS "Using included TOML++") +#endif() if(LibXml2_FOUND) set(HAVE_LIBXML2 1)