Commit d6f2d2d0 authored by Davis King's avatar Davis King

Removed the code that set the cmake policy CMP0015 which apparently

no longer exists or only ever existed in a beta version or something.
At any rate, these lines were causing cmake to fail on some versions
of Mac OS X.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403568
parent 8ebae5b9
...@@ -11,9 +11,6 @@ cmake_minimum_required(VERSION 2.4) ...@@ -11,9 +11,6 @@ cmake_minimum_required(VERSION 2.4)
# Suppress cmake warnings about changes in new versions. # Suppress cmake warnings about changes in new versions.
if(COMMAND cmake_policy) if(COMMAND cmake_policy)
cmake_policy(SET CMP0003 NEW) cmake_policy(SET CMP0003 NEW)
if(POLICY CMP0015)
cmake_policy(SET CMP0015 NEW)
endif()
endif() endif()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment