commit 6f196bc1cfeb450eccfb0f30161c5cabf28137da
parent 979c97d6c42619c1cdf4a237ea8cef9dc4139012
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 27 Aug 2021 10:17:34 +0200
Merge branch 'release_0.2.1'
Diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -40,6 +40,11 @@ informations on CMake.
## Release notes
+### Version 0.2.1
+
+Sets the CMake minimum version to 3.1: since CMake 3.20, version 2.8 has become
+obsolete.
+
### Version 0.2
- Update the profile of the functors invoked on node traversal: the ray
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 3.1)
project(svx C)
enable_testing()