From 6b86bac676d71520ab0261b9fd6d6a7dc9f76943 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= Date: Mon, 20 Nov 2023 22:27:47 +0100 Subject: [PATCH] [cmake] define CMake minimum required version first More recent versions of CMake emit a warning otherwise --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5dbcbab..4fdaa8a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,8 +2,8 @@ # It is not actually needed for downstream use. # -project(UseLatexMk) cmake_minimum_required(VERSION 3.5) +project(UseLatexMk) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}) include(UseLatexMk)