diff options
| author | Frédéric Desbiens <[email protected]> | 2025-02-24 15:42:21 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-02-24 15:42:21 -0500 |
| commit | f0a44ad3914da1ce8429e55ff74f59eca11b6ec7 (patch) | |
| tree | 55c635ef6650198af9edf00e063c916124cfa816 | |
| parent | 880598c60862b451806ab23115ceddf541b23116 (diff) | |
| parent | 898d0ebfde9028c2be7566bad50c5679ad14cdd2 (diff) | |
Merge pull request #441 from eclipse-threadx/cmake-minimal-version
Updated CMake minimal version
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | test/smp/cmake/regression/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | test/smp/cmake/samples/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | test/smp/cmake/threadx_smp/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | test/tx/cmake/regression/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | test/tx/cmake/samples/CMakeLists.txt | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 05baf6c7..42c328fd 100644 --- 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(threadx diff --git a/test/smp/cmake/regression/CMakeLists.txt b/test/smp/cmake/regression/CMakeLists.txt index ad002d18..0b9384c2 100644 --- a/test/smp/cmake/regression/CMakeLists.txt +++ b/test/smp/cmake/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/smp/cmake/samples/CMakeLists.txt b/test/smp/cmake/samples/CMakeLists.txt index 4925246c..2061afd5 100644 --- a/test/smp/cmake/samples/CMakeLists.txt +++ b/test/smp/cmake/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) diff --git a/test/smp/cmake/threadx_smp/CMakeLists.txt b/test/smp/cmake/threadx_smp/CMakeLists.txt index f12de984..d142d790 100644 --- a/test/smp/cmake/threadx_smp/CMakeLists.txt +++ b/test/smp/cmake/threadx_smp/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(threadx_smp diff --git a/test/tx/cmake/regression/CMakeLists.txt b/test/tx/cmake/regression/CMakeLists.txt index 160f9e29..ec67dd57 100644 --- a/test/tx/cmake/regression/CMakeLists.txt +++ b/test/tx/cmake/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/tx/cmake/samples/CMakeLists.txt b/test/tx/cmake/samples/CMakeLists.txt index 2915ed22..059775ac 100644 --- a/test/tx/cmake/samples/CMakeLists.txt +++ b/test/tx/cmake/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) |
