You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by jo...@apache.org on 2017/04/26 21:05:27 UTC

[5/5] mesos git commit: CMake: Bump minimum version to 3.7.0 on Windows.

CMake: Bump minimum version to 3.7.0 on Windows.

The `SOURCE_SUBDIR` command to `ExternalProject_Add` was added in CMake
3.7.0, and is necessary to most cleanly build an external CMake built
project where the `CMakeLists.txt` is in a subfolder of the project.

Review: https://reviews.apache.org/r/58449/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/5ec64bec
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/5ec64bec
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/5ec64bec

Branch: refs/heads/master
Commit: 5ec64bec33e3a4e95a96a20cf8622641b3205fb9
Parents: 6e64ffa
Author: Andrew Schwartzmeyer <an...@schwartzmeyer.com>
Authored: Tue Apr 25 18:29:02 2017 -0700
Committer: Joseph Wu <jo...@apache.org>
Committed: Wed Apr 26 14:04:09 2017 -0700

----------------------------------------------------------------------
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/5ec64bec/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ea529ec..425d55e 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,7 +19,7 @@
 if (NOT WIN32)
   cmake_minimum_required(VERSION 2.8.10)
 else (NOT WIN32)
-  cmake_minimum_required(VERSION 3.6.0)
+  cmake_minimum_required(VERSION 3.7.0)
 endif (NOT WIN32)
 
 project(Mesos)