From 918c1ec620bd484eb6facbd1a0123816169f60ad Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Mon, 8 Feb 2016 13:12:00 +0000 Subject: [PATCH] Problem: CMake uses command added in 2.8.12 Solution: bump CMake required version to 2.8.12 to avoid: CMake Error at tests/CMakeLists.txt:110 (target_include_directories): Unknown CMake command "target_include_directories". --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c74b5854..27e44937 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # CMake build script for ZeroMQ -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 2.8.12) project(ZeroMQ) list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_SOURCE_DIR}")