From bb949cbbd8a2db20d53b80557435ae4358f7e181 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Tue, 30 Sep 2025 17:24:05 +0200 Subject: [PATCH] Fix required CMake version `add_compile_definitions` was introduced in CMake 3.12 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 34f029f..0a2f493 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ # Distributed under the Boost Software License, Version 1.0. # https://www.boost.org/LICENSE_1_0.txt -cmake_minimum_required(VERSION 3.5...3.16) +cmake_minimum_required(VERSION 3.12...3.16) project(boost_msm VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)