From 20773dee29acdbdca7dab129ad41618a3d29fba8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20M=C3=BCller?= Date: Sun, 17 Sep 2023 09:22:47 +0200 Subject: [PATCH] CMake: Check for minimum version before setting the project name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcus Müller --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a843ae32..eaf18b116 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ +cmake_minimum_required(VERSION 3.0.0) project(clementine) -cmake_minimum_required(VERSION 3.0.0) cmake_policy(SET CMP0053 OLD) include(CheckCXXCompilerFlag)