summaryrefslogtreecommitdiff
path: root/test/fuzz
diff options
context:
space:
mode:
authorBradley Lowekamp <blowekamp@mail.nih.gov>2024-11-26 09:12:49 -0500
committerHans Kristian Rosbach <hk-github@circlestorm.org>2024-12-07 22:31:37 +0100
commit11bef87c1c795d8498393c1202bcba4b274a2539 (patch)
treef7cf68b23a7f0c54fe902df9f85e1d7ada82f53f /test/fuzz
parent2562fd1fb3a229517945073b3ee5eb2b8efcfd09 (diff)
downloadProject-Tick-11bef87c1c795d8498393c1202bcba4b274a2539.tar.gz
Project-Tick-11bef87c1c795d8498393c1202bcba4b274a2539.zip
Address deprecated cmake version warning.
Use cmake_minimum_required(VERSION <min>...<policy_max>) syntax to set the policy at the same time as the compatibile CMake version.
Diffstat (limited to 'test/fuzz')
-rw-r--r--test/fuzz/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fuzz/CMakeLists.txt b/test/fuzz/CMakeLists.txt
index 27a04c0e74..beccef3b9a 100644
--- a/test/fuzz/CMakeLists.txt
+++ b/test/fuzz/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.5.1)
+cmake_minimum_required(VERSION 3.5.1...3.29.0)
if(CMAKE_C_COMPILER_ID MATCHES "Clang")
enable_language(CXX)