mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:47:16 +08:00
54 lines
2.2 KiB
Diff
54 lines
2.2 KiB
Diff
From 6b68666fa4d590cedf361271ba1072aec6c42b75 Mon Sep 17 00:00:00 2001
|
|
From: Alexandr Akulich <akulichalexander@gmail.com>
|
|
Date: Mon, 8 Jun 2015 22:01:02 +0600
|
|
Subject: [PATCH 02/22] CMakeLists: Minimum version bumped to 2.8.12.
|
|
|
|
Required since commit 31c8f4170f58a21baebce226918e6ed52a46dd0b.
|
|
---
|
|
CMakeLists.txt | 30 +-----------------------------
|
|
1 file changed, 1 insertion(+), 29 deletions(-)
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index fe8f4e0..c6a5a2a 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -1,34 +1,6 @@
|
|
project(TelepathyQt)
|
|
|
|
-cmake_minimum_required(VERSION 2.6)
|
|
-
|
|
-# CMake policies are used for backwards compatibilty. Setting a policy to a behavior lets newer
|
|
-# CMake versions where some behaviors changed behave in a way or another. In our specific case,
|
|
-# From CMake's documentation:
|
|
-#
|
|
-# In CMake 2.6.2 and below, CMake Policy settings in scripts loaded by
|
|
-# the include() and find_package() commands would affect the includer.
|
|
-# Explicit invocations of cmake_policy(PUSH) and cmake_policy(POP) were
|
|
-# required to isolate policy changes and protect the includer. While
|
|
-# some scripts intend to affect the policies of their includer, most do
|
|
-# not. In CMake 2.6.3 and above, include() and find_package() by
|
|
-# default PUSH and POP an entry on the policy stack around an included
|
|
-# script, but provide a NO_POLICY_SCOPE option to disable it. This
|
|
-# policy determines whether or not to imply NO_POLICY_SCOPE for
|
|
-# compatibility. The OLD behavior for this policy is to imply
|
|
-# NO_POLICY_SCOPE for include() and find_package() commands. The NEW
|
|
-# behavior for this policy is to allow the commands to do their default
|
|
-# cmake_policy PUSH and POP.
|
|
-#
|
|
-# This policy was introduced in CMake version 2.6.3. CMake version
|
|
-# 2.8.2 warns when the policy is not set and uses OLD behavior. Use the
|
|
-# cmake_policy command to set it to OLD or NEW explicitly.
|
|
-#
|
|
-# Whenever our cmake_minimum_required version bumps up to 2.7 or 2.6.3, this policy setting can
|
|
-# hence be removed.
|
|
-if(POLICY CMP0011)
|
|
- cmake_policy(SET CMP0011 NEW)
|
|
-endif(POLICY CMP0011)
|
|
+cmake_minimum_required(VERSION 2.8.12)
|
|
|
|
# Making releases:
|
|
# set the new version number:
|
|
--
|
|
2.5.0
|
|
|