From d1568bf1e95b699693655a5d9994861534752f07 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Wed, 19 Jul 2017 10:43:07 +0200 Subject: [PATCH] Fix #121 CMake Min Version CMake targets / interfaces need at least CMake 3.0 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f0b8f89..44c0835 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.0.0) project(cppzmq) find_package(ZeroMQ)