From 11720395b13caf1d2126085264d46437c0869b9f Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Mon, 2 Jan 2023 20:07:39 +0100 Subject: [PATCH] Lower CMake version requirement to 3.12 This allows compiling chdman on a fresh Ubuntu 20.04 Docker container, without requiring a third-party repository for CMake (or building it from source). This is useful to create chdman binaries that work on many Linux distributions, including LTS ones. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b7cfdab..eb85a99 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.18) +cmake_minimum_required(VERSION 3.12) project("chdman CBT edition") set(build_version "0.238-CBT_edition") set(vcs_revision "mame0238")