diff options
| author | Frédéric Desbiens <[email protected]> | 2025-02-24 08:55:46 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-02-24 08:55:46 -0500 |
| commit | fcfe244b2234aed87d492d8f04824808d104e37c (patch) | |
| tree | 6f1ab431420cb8302773831c3d18046ba4b39044 | |
| parent | 424ce2775b75d7b84098c8cf3609b5f843c33fe6 (diff) | |
| parent | f1c70450ad2782b74b43542a220b8cbf0cf03aa2 (diff) | |
Merge pull request #189 from eclipse-threadx/cmake-version
Updated minimal CMake version to 3.13.
| -rwxr-xr-x | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | test/cmake/usbx/regression/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | test/cmake/usbx/samples/CMakeLists.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ddf8291..3f7a92b 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR) +cmake_minimum_required(VERSION 3.13 FATAL_ERROR) # Set up the project project(usbx diff --git a/test/cmake/usbx/regression/CMakeLists.txt b/test/cmake/usbx/regression/CMakeLists.txt index 00e58cf..372f235 100644 --- a/test/cmake/usbx/regression/CMakeLists.txt +++ b/test/cmake/usbx/regression/CMakeLists.txt @@ -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) diff --git a/test/cmake/usbx/samples/CMakeLists.txt b/test/cmake/usbx/samples/CMakeLists.txt index 16e1d52..667be34 100644 --- a/test/cmake/usbx/samples/CMakeLists.txt +++ b/test/cmake/usbx/samples/CMakeLists.txt @@ -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) |
