quell CMake warning

minimum version should come before project statement
This commit is contained in:
Arne Morten Kvarving 2024-03-08 11:24:30 +01:00
parent 02ad544574
commit 6c2af63ed0

View File

@ -14,11 +14,11 @@
# # # #
########################################################################### ###########################################################################
cmake_minimum_required (VERSION 3.10)
# Mandatory call to project # Mandatory call to project
project(opm-upscaling C CXX) project(opm-upscaling C CXX)
cmake_minimum_required (VERSION 3.10)
option(SIBLING_SEARCH "Search for other modules in sibling directories?" ON) option(SIBLING_SEARCH "Search for other modules in sibling directories?" ON)
option(INSTALL_BENCHMARKS "Install benchmark applications?" OFF) option(INSTALL_BENCHMARKS "Install benchmark applications?" OFF)