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
This commit is contained in:
Gianfranco Costamagna 2023-07-20 11:48:13 +02:00 committed by GitHub
parent c94c20743e
commit 9c3991caa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0 FATAL_ERROR) cmake_minimum_required(VERSION 3.11 FATAL_ERROR)
project(cppzmq-examples CXX) project(cppzmq-examples CXX)