From e37aaeae09f2e628c6943edcbae50ccac22edf9a Mon Sep 17 00:00:00 2001 From: cadolphe Date: Mon, 5 Feb 2024 17:00:25 -0500 Subject: [PATCH] SWDEV-443537 - Fix cmake build warning Update cmake minimum requirement on deprecated cmake version (2.8.11) to non-deprecated version (3.5) Change-Id: Ib76d241babf475a26464e8b12b91d67e48f72b60 --- opencl/khronos/headers/opencl2.2/tests/CMakeLists.txt | 2 +- opencl/khronos/icd/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opencl/khronos/headers/opencl2.2/tests/CMakeLists.txt b/opencl/khronos/headers/opencl2.2/tests/CMakeLists.txt index 351008cf87..18451f784e 100644 --- a/opencl/khronos/headers/opencl2.2/tests/CMakeLists.txt +++ b/opencl/khronos/headers/opencl2.2/tests/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 2.8.11) +cmake_minimum_required (VERSION 3.5) project(OpenCL_Headers_Tests) diff --git a/opencl/khronos/icd/CMakeLists.txt b/opencl/khronos/icd/CMakeLists.txt index 4bafa862e2..8ed6fe08d1 100644 --- a/opencl/khronos/icd/CMakeLists.txt +++ b/opencl/khronos/icd/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 2.8.11) +cmake_minimum_required (VERSION 3.5) project (OPENCL_ICD_LOADER) include (GNUInstallDirs)