summaryrefslogtreecommitdiffstats
path: root/Utilities
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-12-26 06:52:23 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-01-04 10:28:56 (GMT)
commit0cf550b2ca500be0e3dffc47be92438d3e789b81 (patch)
treee7c6072fc82bf8be09be8f07b4e2671336eb4dff /Utilities
parent5c0a06ab843ceae380192db4cae18d4851640a8b (diff)
downloadCMake-0cf550b2ca500be0e3dffc47be92438d3e789b81.zip
CMake-0cf550b2ca500be0e3dffc47be92438d3e789b81.tar.gz
CMake-0cf550b2ca500be0e3dffc47be92438d3e789b81.tar.bz2
Help: Remove workaround for pre-CMake 2.8.4 code.
The requirement was updated in commit 920ffbf5 (Require CMake 2.8.4 or greater to build CMake, 2013-10-11) and similar snippets were removed.
Diffstat (limited to 'Utilities')
-rw-r--r--Utilities/Sphinx/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/Utilities/Sphinx/CMakeLists.txt b/Utilities/Sphinx/CMakeLists.txt
index 5e0ef87..aa9735e 100644
--- a/Utilities/Sphinx/CMakeLists.txt
+++ b/Utilities/Sphinx/CMakeLists.txt
@@ -11,8 +11,7 @@
#=============================================================================
if(NOT CMake_SOURCE_DIR)
set(CMakeHelp_STANDALONE 1)
- cmake_minimum_required(VERSION 2.8.2 FATAL_ERROR)
- set(CMAKE_LEGACY_CYGWIN_WIN32 0) # Remove when CMake >= 2.8.4 is required
+ cmake_minimum_required(VERSION 2.8.4 FATAL_ERROR)
get_filename_component(tmp "${CMAKE_CURRENT_SOURCE_DIR}" PATH)
get_filename_component(CMake_SOURCE_DIR "${tmp}" PATH)
include(${CMake_SOURCE_DIR}/Modules/CTestUseLaunchers.cmake)