From 9c3991caa8578e767292e9756e12f68c53a8ed2e Mon Sep 17 00:00:00 2001 From: Gianfranco Costamagna Date: Thu, 20 Jul 2023 11:48:13 +0200 Subject: [PATCH] Update CMakeLists.txt Require at least cmake 3.11 to run examples, as its required in main CMakeLists.txt file. Newer cmake issue errors with version less then 3.5 See e.g. https://bugs.debian.org/1040723 --- examples/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 1b47e03..0861767 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.11 FATAL_ERROR) project(cppzmq-examples CXX)