From 6c2af63ed0d69ca88febba90a2c94caa9aa15f42 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Fri, 8 Mar 2024 11:24:30 +0100 Subject: [PATCH] quell CMake warning minimum version should come before project statement --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f4f68c6..c0783b1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,11 +14,11 @@ # # ########################################################################### +cmake_minimum_required (VERSION 3.10) + # Mandatory call to project project(opm-upscaling C CXX) -cmake_minimum_required (VERSION 3.10) - option(SIBLING_SEARCH "Search for other modules in sibling directories?" ON) option(INSTALL_BENCHMARKS "Install benchmark applications?" OFF)