[llvm] r200645 - [CMake] Move cmake_minimum_required(2.8.8) at the top.

NAKAMURA Takumi geek4civic at gmail.com
Sun Feb 2 08:59:36 PST 2014


Author: chapuni
Date: Sun Feb  2 10:59:36 2014
New Revision: 200645

URL: http://llvm.org/viewvc/llvm-project?rev=200645&view=rev
Log:
[CMake] Move cmake_minimum_required(2.8.8) at the top.

Suggested by Stephen Kelly.

Modified:
    llvm/trunk/CMakeLists.txt

Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=200645&r1=200644&r2=200645&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Sun Feb  2 10:59:36 2014
@@ -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.8)
+project(LLVM)
 
 # Add path for custom modules
 set(CMAKE_MODULE_PATH





More information about the llvm-commits mailing list