From 89cfbf427c7440019bdda98006b4caeb1d38d748 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Wed, 25 Feb 2026 09:14:37 +0100 Subject: [PATCH] Use system toml11 library --- cli/CMakeLists.txt | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/cli/CMakeLists.txt b/cli/CMakeLists.txt index ce8005d..7610cf0 100644 --- a/cli/CMakeLists.txt +++ b/cli/CMakeLists.txt @@ -2,13 +2,7 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at https://mozilla.org/MPL/2.0/. -FetchContent_Declare(toml11 - GIT_REPOSITORY https://github.com/ToruNiina/toml11.git - GIT_TAG v4.4.0 - GIT_PROGRESS TRUE -) -FetchContent_MakeAvailable(toml11) - +find_package(toml11 REQUIRED) find_package(Boost CONFIG COMPONENTS program_options REQUIRED) add_executable(katja-cli main.cpp)