2
0
mirror of https://github.com/boostorg/msm.git synced 2026-01-19 04:22:11 +00:00

Fix required CMake version

`add_compile_definitions` was introduced in CMake 3.12
This commit is contained in:
Alexander Grund
2025-09-30 17:24:05 +02:00
committed by GitHub
parent 6d2d8dce57
commit bb949cbbd8

View File

@@ -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)