Update minimal CMake version to 3.13

Anything under 3.5 was breaking build scripts (for FileX and for
other components that use FileX as a dependency e.g. NetXDuo)
This commit is contained in:
Huan Nguyen
2025-05-14 15:47:49 -06:00
parent 1312f87f3b
commit c7ec0eaedf
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
cmake_policy(SET CMP0057 NEW)
project(regression_test LANGUAGES C)
+1 -1
View File
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
cmake_policy(SET CMP0057 NEW)
project(samples LANGUAGES C)