Fixed cmake policy issue

This commit is contained in:
Joel Laity 2017-08-03 15:50:45 +12:00
parent 28bb854cef
commit 568958e940

View File

@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 2.6.4) cmake_minimum_required(VERSION 2.6.4)
if (policy CMP0048) if (POLICY CMP0048)
cmake_policy(SET CMP0048 NEW) cmake_policy(SET CMP0048 NEW)
endif (policy CMP0048) endif (POLICY CMP0048)
project( googletest-distribution ) project( googletest-distribution )