From 7e3d441dcdb4846ac9fc00c93ba3de1d427eb029 Mon Sep 17 00:00:00 2001 From: Mark Piper Date: Mon, 16 Oct 2023 14:07:42 -0600 Subject: [PATCH] Update project and minimum required CMake version --- CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8f0f520..4d6afc8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,11 @@ # bmi-example-fortran -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.12) -project(bmi-example-fortran Fortran) +project(bmi-example-fortran + VERSION 2.0 + LANGUAGES Fortran +) set(model_name heatf) set(bmi_name bmi${model_name})