summaryrefslogtreecommitdiff
path: root/dev-util/intel-graphics-compiler/files/intel-graphics-compiler-1.0.8365-cmake-minimum-version.patch
blob: dcf762872a1879c243d88b95e07631c3430b6699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
From 419ae48d0e2cb932a6618e9012b4164e93e58279 Mon Sep 17 00:00:00 2001
From: Conrad Kostecki <conikost@gentoo.org>
Date: Sat, 28 Aug 2021 00:16:23 +0200
Subject: [PATCH] IGC: CMakeLists: adjust minimum_version

As CMake warns about possible compatibility problems,
the minimum version should be updated, as it should be compatible.

Otherwise, the warning is printed:
Compatibility with CMake < 2.8.12 will be removed from a future version of CMake.

Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
---
 visa/CMakeLists.txt                             | 2 +-
 visa/iga/GEDLibrary/GED_external/CMakeLists.txt | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/visa/CMakeLists.txt b/visa/CMakeLists.txt
index c70d80d5726..3e54bd93079 100644
--- a/visa/CMakeLists.txt
+++ b/visa/CMakeLists.txt
@@ -68,7 +68,7 @@ if(WIN32)
   cmake_minimum_required(VERSION 3.1)
   cmake_policy(SET CMP0043 OLD)
 else()
-  cmake_minimum_required(VERSION 2.8)
+  cmake_minimum_required(VERSION 2.8.12)
 endif(WIN32)
 
 # In the case where this is the IGC build we need to add a dummy custom target check_headers
diff --git a/visa/iga/GEDLibrary/GED_external/CMakeLists.txt b/visa/iga/GEDLibrary/GED_external/CMakeLists.txt
index d3011ddae6a..e40313fc194 100644
--- a/visa/iga/GEDLibrary/GED_external/CMakeLists.txt
+++ b/visa/iga/GEDLibrary/GED_external/CMakeLists.txt
@@ -10,7 +10,7 @@
 if(WIN32)
     cmake_minimum_required(VERSION 3.1)
 else()
-    cmake_minimum_required(VERSION 2.8)
+    cmake_minimum_required(VERSION 2.8.12)
 endif(WIN32)
 
 project(GEDLibrary)