summaryrefslogtreecommitdiff
path: root/cli/CMakeLists.txt
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-02-25 09:14:37 +0100
committerEugen Wissner <belka@caraus.de>2026-02-25 09:14:37 +0100
commit89cfbf427c7440019bdda98006b4caeb1d38d748 (patch)
tree902179e3a81a93f4cd83afe2365e006b0b305817 /cli/CMakeLists.txt
parent97efcb4faa6de6a7a0ba19c483f3e69ef1fbf48d (diff)
downloadkatja-89cfbf427c7440019bdda98006b4caeb1d38d748.tar.gz
Use system toml11 library
Diffstat (limited to 'cli/CMakeLists.txt')
-rw-r--r--cli/CMakeLists.txt8
1 files changed, 1 insertions, 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)