[trunk] removed warnings when configuring with CMake 3.x on MacOS (fixes issue 443)

This commit is contained in:
Matthieu Darbois 2014-11-25 23:57:37 +00:00
parent 570dd13f55
commit 46afb746f0
1 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,9 @@ cmake_minimum_required(VERSION 2.8.2)
if(COMMAND CMAKE_POLICY)
cmake_policy(SET CMP0003 NEW)
if (NOT (${CMAKE_VERSION} VERSION_LESS 3.0))
cmake_policy(SET CMP0042 NEW)
endif()
endif()
if(NOT OPENJPEG_NAMESPACE)