From fbae795dfa5165e92d029f5749de2f4b82ab95fe Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Sun, 31 Jul 2016 02:28:58 -0400 Subject: [cmake] set cmake_minimum_required to 2.8.2 CHECK_SYMBOL_EXISTS() is available in CMake >= 2.8.0 Clang is supported in CMake >= 2.8.2 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8ab90449..694ee58d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ project(lighttpd C) -cmake_minimum_required(VERSION 2.4.0 FATAL_ERROR) +cmake_minimum_required(VERSION 2.8.2 FATAL_ERROR) set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) -- cgit v1.2.1