[llvm] r175434 - Note minimum required version of CMake

Tim Northover Tim.Northover at arm.com
Mon Feb 18 03:41:04 PST 2013


Author: tnorthover
Date: Mon Feb 18 05:41:04 2013
New Revision: 175434

URL: http://llvm.org/viewvc/llvm-project?rev=175434&view=rev
Log:
Note minimum required version of CMake

We already use features from 2.8.6, this just gives a slightly more friendly
message when the dependency isn't met.

Patch from Keith Walker.

Modified:
    llvm/trunk/CMakeLists.txt

Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=175434&r1=175433&r2=175434&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Mon Feb 18 05:41:04 2013
@@ -1,7 +1,7 @@
 # See docs/CMake.html for instructions about how to build LLVM with CMake.
 
 project(LLVM)
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 2.8.6)
 
 # Add path for custom modules
 set(CMAKE_MODULE_PATH





More information about the llvm-commits mailing list