stardis

Perform coupled heat transfer calculations
git clone git://git.meso-star.fr/stardis.git
Log | Files | Refs | README | LICENSE

commit 47d52a982ee7c288902291d14f327ae2af159f69
parent 8967b84ccb7702cf480c72321a98726d28efb52b
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 15 Dec 2023 10:30:04 +0100

Update the minimum version of CMake

The latest version of CMake warns against going below 3.5. A lower
version is considered obsolete.

Diffstat:
Mcmake/CMakeLists.txt | 2+-
Mcmake/stardis-green-types/CMakeLists.txt | 2+-
Mcmake/stardis-prog-properties/CMakeLists.txt | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.5) project(stardis C) set(SDIS_SOURCE_DIR ${PROJECT_SOURCE_DIR}/../src) diff --git a/cmake/stardis-green-types/CMakeLists.txt b/cmake/stardis-green-types/CMakeLists.txt @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.5) set(STARDIS_SGT_DIR ${PROJECT_SOURCE_DIR}/../stardis-green-types) diff --git a/cmake/stardis-prog-properties/CMakeLists.txt b/cmake/stardis-prog-properties/CMakeLists.txt @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.5) set(STARDIS_SPROG_DIR ${PROJECT_SOURCE_DIR}/../stardis-prog-properties)