From 1500f984888ba31734933466def7399846c31a0c Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Fri, 31 May 2024 15:09:41 +1000 Subject: [PATCH] * move cmake_minimum_required() to begin of top CMakeLists.txt --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ebee6cd..9abbd22 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,9 @@ +cmake_minimum_required(VERSION 3.4) + set(CNAME "f2b") set(VERSION "0.6") project(${CNAME} C) -cmake_minimum_required(VERSION 3.4) include(CTest)