From 2ef32abf3d5b83c24863949e8413b810d54c7f2a Mon Sep 17 00:00:00 2001 From: Pat Riehecky Date: Fri, 27 Mar 2026 13:24:55 -0500 Subject: [PATCH] chore: use modern cmake version detection Signed-off-by: Pat Riehecky --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b2efedf2..597c429d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -70,7 +70,7 @@ if(USE_SYSTEM_JSON) endif() if(USE_SYSTEM_RAPIDYAML) - find_package(ryml REQUIRED VERSION 0.10.0) + find_package(ryml 0.10.0 REQUIRED) endif() #### Utility function to configure a target with our preferred C and C++ compilation flags.