BUG: Convert cmake_policy(VERSION) to cmake_minimum_required(VERSION) in Tests/MakeClean/ToClean/CMakeLists.txt and Tests/Preprocess/CMakeLists.txt. CMP0000 now requires the cmake_minimum_required command.

This commit is contained in:
Brad King 2008-03-20 18:25:33 -04:00
parent 9453489919
commit 8e2f45c24b
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
cmake_policy(VERSION 2.6)
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
PROJECT(ToClean)
# Build a simple project.

View File

@ -1,4 +1,4 @@
cmake_policy(VERSION 2.6)
cmake_minimum_required(VERSION 2.6)
project(Preprocess)
# This test is meant both as a test and as a reference for supported