LLVM's CMake is now using a feature that wasn't preasant in CMake 2.8.7,

so bump the minimum version in the standalone Clang CMake project as
well.

As I mentioned on the LLVM commit version of this, if this causes any
trouble for folks, just let me know. I'm trying to avoid re-implementing
functionality in CMake, but I will if there are problems using the newer
versions.

llvm-svn: 199152
This commit is contained in:
Chandler Carruth 2014-01-13 22:23:58 +00:00
parent b32989eb51
commit 0ad27923d5
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
# standalone project, using LLVM as an external library:
if( CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR )
project(Clang)
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 2.8.8)
# Rely on llvm-config.
set(CONFIG_OUTPUT)