Of the platforms Graphviz supports, the one with the oldest CMake version
available is Ubuntu 18.04, which has CMake 3.10.2. This change raises the
baseline CMake requirement to indicate we no longer support CMake 3.9.
The diff between CMake 3.9 and 3.10 does not actually contain anything useful to
Graphviz. But it still seems wise to proactively move our floor forwards.
- **Breaking**: An `outline_width` field has been added to the `Agnodeinfo_t` struct.
- **Breaking**: An `outline_height` field has been added to the `Agnodeinfo_t` struct.
+- When using the CMake build system, the minimum requirement has been increased
+ from CMake 3.9 to CMake 3.10.2.
### Removed
-cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
+cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
project(Graphviz)
include(FeatureSummary)