diff --git a/boards/arm/mps2_an521/empty_cpu0/CMakeLists.txt b/boards/arm/mps2_an521/empty_cpu0/CMakeLists.txt index b7d84084425..e5d60e57b33 100644 --- a/boards/arm/mps2_an521/empty_cpu0/CMakeLists.txt +++ b/boards/arm/mps2_an521/empty_cpu0/CMakeLists.txt @@ -3,7 +3,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(empty_cpu0) diff --git a/cmake/app/boilerplate.cmake b/cmake/app/boilerplate.cmake index 4ae701b15b9..cc75eb0c77c 100644 --- a/cmake/app/boilerplate.cmake +++ b/cmake/app/boilerplate.cmake @@ -26,7 +26,7 @@ # # Under these restraints we use a second 'cmake_minimum_required' # invocation in every toplevel CMakeLists.txt. -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # CMP0002: "Logical target names must be globally unique" cmake_policy(SET CMP0002 NEW) diff --git a/cmake/boards.cmake b/cmake/boards.cmake index 55a6766b07b..16216c4f2a5 100644 --- a/cmake/boards.cmake +++ b/cmake/boards.cmake @@ -27,7 +27,7 @@ if(CMAKE_SCRIPT_MODE_FILE AND NOT CMAKE_PARENT_LIST_FILE) # BOARD_ROOT: Semi-colon separated board roots # FILE_OUT: Set to a file path to save the boards to a file. If not defined the # the contents will be printed to stdout -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(NO_BOILERPLATE TRUE) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 5f97f337b2d..a3386fa0fb2 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) project(Zephyr-Kernel-Doc LANGUAGES) set(NO_BOILERPLATE TRUE) diff --git a/samples/application_development/code_relocation/CMakeLists.txt b/samples/application_development/code_relocation/CMakeLists.txt index 4136f6437b6..079ef1fe1c1 100644 --- a/samples/application_development/code_relocation/CMakeLists.txt +++ b/samples/application_development/code_relocation/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(code_relocation) diff --git a/samples/application_development/external_lib/CMakeLists.txt b/samples/application_development/external_lib/CMakeLists.txt index e71370dc569..20cda9c55c6 100644 --- a/samples/application_development/external_lib/CMakeLists.txt +++ b/samples/application_development/external_lib/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(external_lib) diff --git a/samples/application_development/out_of_tree_board/CMakeLists.txt b/samples/application_development/out_of_tree_board/CMakeLists.txt index 561ea096bb3..3e3e68f3952 100644 --- a/samples/application_development/out_of_tree_board/CMakeLists.txt +++ b/samples/application_development/out_of_tree_board/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # Re-direct the directory where the 'boards' directory is found from # $ZEPHYR_BASE to this directory. set(BOARD_ROOT ${CMAKE_CURRENT_LIST_DIR}) diff --git a/samples/application_development/out_of_tree_driver/CMakeLists.txt b/samples/application_development/out_of_tree_driver/CMakeLists.txt index f52651260fa..3f3932363d0 100644 --- a/samples/application_development/out_of_tree_driver/CMakeLists.txt +++ b/samples/application_development/out_of_tree_driver/CMakeLists.txt @@ -6,7 +6,7 @@ list(APPEND ZEPHYR_EXTRA_MODULES ${CMAKE_CURRENT_SOURCE_DIR}/hello_world_module ) -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(out_of_tree_driver) diff --git a/samples/arch/mpu/mpu_test/CMakeLists.txt b/samples/arch/mpu/mpu_test/CMakeLists.txt index 18b6cabc617..aa9198a6506 100644 --- a/samples/arch/mpu/mpu_test/CMakeLists.txt +++ b/samples/arch/mpu/mpu_test/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mpu_test) diff --git a/samples/arch/smp/pi/CMakeLists.txt b/samples/arch/smp/pi/CMakeLists.txt index 879d3120e78..728224833c3 100644 --- a/samples/arch/smp/pi/CMakeLists.txt +++ b/samples/arch/smp/pi/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(smp_pi) diff --git a/samples/arch/smp/pktqueue/CMakeLists.txt b/samples/arch/smp/pktqueue/CMakeLists.txt index 0cdeb6efecc..e4b3e508a63 100644 --- a/samples/arch/smp/pktqueue/CMakeLists.txt +++ b/samples/arch/smp/pktqueue/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(smp_pktqueue) diff --git a/samples/basic/blinky/CMakeLists.txt b/samples/basic/blinky/CMakeLists.txt index 54f89094079..4de34fbd81e 100644 --- a/samples/basic/blinky/CMakeLists.txt +++ b/samples/basic/blinky/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(blinky) diff --git a/samples/basic/blinky_pwm/CMakeLists.txt b/samples/basic/blinky_pwm/CMakeLists.txt index 9b3f81411d0..237fe69bc4e 100644 --- a/samples/basic/blinky_pwm/CMakeLists.txt +++ b/samples/basic/blinky_pwm/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(blink_led) diff --git a/samples/basic/button/CMakeLists.txt b/samples/basic/button/CMakeLists.txt index 98d4a24da22..9a7af054dda 100644 --- a/samples/basic/button/CMakeLists.txt +++ b/samples/basic/button/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(button) diff --git a/samples/basic/fade_led/CMakeLists.txt b/samples/basic/fade_led/CMakeLists.txt index d2cf9341a11..c17453fce1e 100644 --- a/samples/basic/fade_led/CMakeLists.txt +++ b/samples/basic/fade_led/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fade_led) diff --git a/samples/basic/minimal/CMakeLists.txt b/samples/basic/minimal/CMakeLists.txt index bba10aabec4..715eefecfdf 100644 --- a/samples/basic/minimal/CMakeLists.txt +++ b/samples/basic/minimal/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(minimal) diff --git a/samples/basic/rgb_led/CMakeLists.txt b/samples/basic/rgb_led/CMakeLists.txt index ed07e457b06..bc91ce4da81 100644 --- a/samples/basic/rgb_led/CMakeLists.txt +++ b/samples/basic/rgb_led/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(rgb_led) diff --git a/samples/basic/servo_motor/CMakeLists.txt b/samples/basic/servo_motor/CMakeLists.txt index 585b3c632d9..60834612cc6 100644 --- a/samples/basic/servo_motor/CMakeLists.txt +++ b/samples/basic/servo_motor/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(servo_motor) diff --git a/samples/basic/threads/CMakeLists.txt b/samples/basic/threads/CMakeLists.txt index 4317c32f332..3f730cb2026 100644 --- a/samples/basic/threads/CMakeLists.txt +++ b/samples/basic/threads/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(threads) diff --git a/samples/bluetooth/beacon/CMakeLists.txt b/samples/bluetooth/beacon/CMakeLists.txt index 6610b070319..7ceb0a29fdc 100644 --- a/samples/bluetooth/beacon/CMakeLists.txt +++ b/samples/bluetooth/beacon/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(beacon) diff --git a/samples/bluetooth/central/CMakeLists.txt b/samples/bluetooth/central/CMakeLists.txt index 570179a980b..088a71d343b 100644 --- a/samples/bluetooth/central/CMakeLists.txt +++ b/samples/bluetooth/central/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(central) diff --git a/samples/bluetooth/central_hr/CMakeLists.txt b/samples/bluetooth/central_hr/CMakeLists.txt index c64608eee65..2814e8adafe 100644 --- a/samples/bluetooth/central_hr/CMakeLists.txt +++ b/samples/bluetooth/central_hr/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(central_hr) diff --git a/samples/bluetooth/central_ht/CMakeLists.txt b/samples/bluetooth/central_ht/CMakeLists.txt index 5551f53d209..9360ee0171d 100644 --- a/samples/bluetooth/central_ht/CMakeLists.txt +++ b/samples/bluetooth/central_ht/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(central_ht) diff --git a/samples/bluetooth/central_iso/CMakeLists.txt b/samples/bluetooth/central_iso/CMakeLists.txt index 570179a980b..088a71d343b 100644 --- a/samples/bluetooth/central_iso/CMakeLists.txt +++ b/samples/bluetooth/central_iso/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(central) diff --git a/samples/bluetooth/central_multilink/CMakeLists.txt b/samples/bluetooth/central_multilink/CMakeLists.txt index 64be1f2b118..d7d56b33783 100644 --- a/samples/bluetooth/central_multilink/CMakeLists.txt +++ b/samples/bluetooth/central_multilink/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(central_multilink) diff --git a/samples/bluetooth/central_past/CMakeLists.txt b/samples/bluetooth/central_past/CMakeLists.txt index 103622f9f6d..d2750bc2a06 100644 --- a/samples/bluetooth/central_past/CMakeLists.txt +++ b/samples/bluetooth/central_past/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(central_past) diff --git a/samples/bluetooth/direction_finding_connectionless_rx/CMakeLists.txt b/samples/bluetooth/direction_finding_connectionless_rx/CMakeLists.txt index 47ce641c147..ca650b331d5 100644 --- a/samples/bluetooth/direction_finding_connectionless_rx/CMakeLists.txt +++ b/samples/bluetooth/direction_finding_connectionless_rx/CMakeLists.txt @@ -3,7 +3,7 @@ # # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/bluetooth/direction_finding_connectionless_tx/CMakeLists.txt b/samples/bluetooth/direction_finding_connectionless_tx/CMakeLists.txt index 78c24fb3fd2..43520536471 100644 --- a/samples/bluetooth/direction_finding_connectionless_tx/CMakeLists.txt +++ b/samples/bluetooth/direction_finding_connectionless_tx/CMakeLists.txt @@ -3,7 +3,7 @@ # # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/bluetooth/eddystone/CMakeLists.txt b/samples/bluetooth/eddystone/CMakeLists.txt index 8815e213c81..e2b9b1ad1fc 100644 --- a/samples/bluetooth/eddystone/CMakeLists.txt +++ b/samples/bluetooth/eddystone/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(eddystone) diff --git a/samples/bluetooth/handsfree/CMakeLists.txt b/samples/bluetooth/handsfree/CMakeLists.txt index 023d2f127eb..d81c40b0304 100644 --- a/samples/bluetooth/handsfree/CMakeLists.txt +++ b/samples/bluetooth/handsfree/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(handsfree) diff --git a/samples/bluetooth/hci_pwr_ctrl/CMakeLists.txt b/samples/bluetooth/hci_pwr_ctrl/CMakeLists.txt index 62c5fccefc7..95f0c86c3d3 100644 --- a/samples/bluetooth/hci_pwr_ctrl/CMakeLists.txt +++ b/samples/bluetooth/hci_pwr_ctrl/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hci_pwr_ctrl) diff --git a/samples/bluetooth/hci_rpmsg/CMakeLists.txt b/samples/bluetooth/hci_rpmsg/CMakeLists.txt index e63cd042192..11dd731c285 100644 --- a/samples/bluetooth/hci_rpmsg/CMakeLists.txt +++ b/samples/bluetooth/hci_rpmsg/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hci_rpmsg) diff --git a/samples/bluetooth/hci_spi/CMakeLists.txt b/samples/bluetooth/hci_spi/CMakeLists.txt index 79e1359f755..0fcb702333e 100644 --- a/samples/bluetooth/hci_spi/CMakeLists.txt +++ b/samples/bluetooth/hci_spi/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hci_spi) diff --git a/samples/bluetooth/hci_uart/CMakeLists.txt b/samples/bluetooth/hci_uart/CMakeLists.txt index b3f57ff7874..51a251814d1 100644 --- a/samples/bluetooth/hci_uart/CMakeLists.txt +++ b/samples/bluetooth/hci_uart/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hci_uart) diff --git a/samples/bluetooth/hci_usb/CMakeLists.txt b/samples/bluetooth/hci_usb/CMakeLists.txt index ab64478796f..714d9c369a5 100644 --- a/samples/bluetooth/hci_usb/CMakeLists.txt +++ b/samples/bluetooth/hci_usb/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hci_usb) diff --git a/samples/bluetooth/hci_usb_h4/CMakeLists.txt b/samples/bluetooth/hci_usb_h4/CMakeLists.txt index 1c64dd88908..003640ea827 100644 --- a/samples/bluetooth/hci_usb_h4/CMakeLists.txt +++ b/samples/bluetooth/hci_usb_h4/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(hci_usb_h4) diff --git a/samples/bluetooth/ibeacon/CMakeLists.txt b/samples/bluetooth/ibeacon/CMakeLists.txt index b10bc7378f6..a22a5c8f81a 100644 --- a/samples/bluetooth/ibeacon/CMakeLists.txt +++ b/samples/bluetooth/ibeacon/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ibeacon) diff --git a/samples/bluetooth/ipsp/CMakeLists.txt b/samples/bluetooth/ipsp/CMakeLists.txt index 3f52234383c..28352541c14 100644 --- a/samples/bluetooth/ipsp/CMakeLists.txt +++ b/samples/bluetooth/ipsp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ipsp) diff --git a/samples/bluetooth/iso_broadcast/CMakeLists.txt b/samples/bluetooth/iso_broadcast/CMakeLists.txt index a2de1d4ced2..7d729786311 100644 --- a/samples/bluetooth/iso_broadcast/CMakeLists.txt +++ b/samples/bluetooth/iso_broadcast/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(iso_broadcast) diff --git a/samples/bluetooth/iso_broadcast_benchmark/CMakeLists.txt b/samples/bluetooth/iso_broadcast_benchmark/CMakeLists.txt index be46106c0ba..ef1834d6d40 100644 --- a/samples/bluetooth/iso_broadcast_benchmark/CMakeLists.txt +++ b/samples/bluetooth/iso_broadcast_benchmark/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(iso_broadcast_benchmark) diff --git a/samples/bluetooth/iso_connected_benchmark/CMakeLists.txt b/samples/bluetooth/iso_connected_benchmark/CMakeLists.txt index bef093ff1c2..623663bb236 100644 --- a/samples/bluetooth/iso_connected_benchmark/CMakeLists.txt +++ b/samples/bluetooth/iso_connected_benchmark/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(NONE) diff --git a/samples/bluetooth/iso_receive/CMakeLists.txt b/samples/bluetooth/iso_receive/CMakeLists.txt index 87335d5cad2..e470971c38e 100644 --- a/samples/bluetooth/iso_receive/CMakeLists.txt +++ b/samples/bluetooth/iso_receive/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(iso_receive) diff --git a/samples/bluetooth/mesh/CMakeLists.txt b/samples/bluetooth/mesh/CMakeLists.txt index abd274d357c..cf3c3c8a8fd 100644 --- a/samples/bluetooth/mesh/CMakeLists.txt +++ b/samples/bluetooth/mesh/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(QEMU_EXTRA_FLAGS -s) if((BOARD STREQUAL nrf51_blenano) OR (BOARD STREQUAL nrf51_ble400)) diff --git a/samples/bluetooth/mesh_demo/CMakeLists.txt b/samples/bluetooth/mesh_demo/CMakeLists.txt index f2a14ab3348..9198bce1871 100644 --- a/samples/bluetooth/mesh_demo/CMakeLists.txt +++ b/samples/bluetooth/mesh_demo/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(QEMU_EXTRA_FLAGS -s) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/bluetooth/mesh_provisioner/CMakeLists.txt b/samples/bluetooth/mesh_provisioner/CMakeLists.txt index 9c02f9a2f38..e0d490e04be 100644 --- a/samples/bluetooth/mesh_provisioner/CMakeLists.txt +++ b/samples/bluetooth/mesh_provisioner/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(QEMU_EXTRA_FLAGS -s) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/bluetooth/periodic_adv/CMakeLists.txt b/samples/bluetooth/periodic_adv/CMakeLists.txt index d8e127ebf14..796bd5e5d8e 100644 --- a/samples/bluetooth/periodic_adv/CMakeLists.txt +++ b/samples/bluetooth/periodic_adv/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(periodic_adv) diff --git a/samples/bluetooth/periodic_sync/CMakeLists.txt b/samples/bluetooth/periodic_sync/CMakeLists.txt index 5ac699f5591..ab801447a2b 100644 --- a/samples/bluetooth/periodic_sync/CMakeLists.txt +++ b/samples/bluetooth/periodic_sync/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(periodic_sync) diff --git a/samples/bluetooth/peripheral/CMakeLists.txt b/samples/bluetooth/peripheral/CMakeLists.txt index 1c843b99cd7..175b480068f 100644 --- a/samples/bluetooth/peripheral/CMakeLists.txt +++ b/samples/bluetooth/peripheral/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral) diff --git a/samples/bluetooth/peripheral_csc/CMakeLists.txt b/samples/bluetooth/peripheral_csc/CMakeLists.txt index f3f3e66afcc..f5012bdb50a 100644 --- a/samples/bluetooth/peripheral_csc/CMakeLists.txt +++ b/samples/bluetooth/peripheral_csc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral_csc) diff --git a/samples/bluetooth/peripheral_dis/CMakeLists.txt b/samples/bluetooth/peripheral_dis/CMakeLists.txt index 6837c54d80e..555faec6a0c 100644 --- a/samples/bluetooth/peripheral_dis/CMakeLists.txt +++ b/samples/bluetooth/peripheral_dis/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral_dis) diff --git a/samples/bluetooth/peripheral_esp/CMakeLists.txt b/samples/bluetooth/peripheral_esp/CMakeLists.txt index b5f222bbd5e..ab352d74cad 100644 --- a/samples/bluetooth/peripheral_esp/CMakeLists.txt +++ b/samples/bluetooth/peripheral_esp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral_esp) diff --git a/samples/bluetooth/peripheral_hids/CMakeLists.txt b/samples/bluetooth/peripheral_hids/CMakeLists.txt index d5e49ab1da3..5146b58c0fd 100644 --- a/samples/bluetooth/peripheral_hids/CMakeLists.txt +++ b/samples/bluetooth/peripheral_hids/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral_hids) diff --git a/samples/bluetooth/peripheral_hr/CMakeLists.txt b/samples/bluetooth/peripheral_hr/CMakeLists.txt index 561c4c3030a..8aad7589396 100644 --- a/samples/bluetooth/peripheral_hr/CMakeLists.txt +++ b/samples/bluetooth/peripheral_hr/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral_hr) diff --git a/samples/bluetooth/peripheral_ht/CMakeLists.txt b/samples/bluetooth/peripheral_ht/CMakeLists.txt index 671b779b821..2ac6fd5c1f3 100644 --- a/samples/bluetooth/peripheral_ht/CMakeLists.txt +++ b/samples/bluetooth/peripheral_ht/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral_ht) diff --git a/samples/bluetooth/peripheral_identity/CMakeLists.txt b/samples/bluetooth/peripheral_identity/CMakeLists.txt index 76efd84e42b..f6110e81522 100644 --- a/samples/bluetooth/peripheral_identity/CMakeLists.txt +++ b/samples/bluetooth/peripheral_identity/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral_identity) diff --git a/samples/bluetooth/peripheral_iso/CMakeLists.txt b/samples/bluetooth/peripheral_iso/CMakeLists.txt index 6ddf031be6c..c2f8d92d824 100644 --- a/samples/bluetooth/peripheral_iso/CMakeLists.txt +++ b/samples/bluetooth/peripheral_iso/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral_iso) diff --git a/samples/bluetooth/peripheral_ots/CMakeLists.txt b/samples/bluetooth/peripheral_ots/CMakeLists.txt index db3c4b15121..422b1e92a3a 100644 --- a/samples/bluetooth/peripheral_ots/CMakeLists.txt +++ b/samples/bluetooth/peripheral_ots/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral_ots) diff --git a/samples/bluetooth/peripheral_past/CMakeLists.txt b/samples/bluetooth/peripheral_past/CMakeLists.txt index eb0f6dd00e0..2851c77a486 100644 --- a/samples/bluetooth/peripheral_past/CMakeLists.txt +++ b/samples/bluetooth/peripheral_past/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral_past) diff --git a/samples/bluetooth/peripheral_sc_only/CMakeLists.txt b/samples/bluetooth/peripheral_sc_only/CMakeLists.txt index d5978b4c7a3..291e5144164 100644 --- a/samples/bluetooth/peripheral_sc_only/CMakeLists.txt +++ b/samples/bluetooth/peripheral_sc_only/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peripheral_sc_only) diff --git a/samples/bluetooth/scan_adv/CMakeLists.txt b/samples/bluetooth/scan_adv/CMakeLists.txt index 376e83ced01..a35e5b1825b 100644 --- a/samples/bluetooth/scan_adv/CMakeLists.txt +++ b/samples/bluetooth/scan_adv/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(scan_adv) diff --git a/samples/bluetooth/st_ble_sensor/CMakeLists.txt b/samples/bluetooth/st_ble_sensor/CMakeLists.txt index 9e3f0a327a8..e1edb7c8632 100644 --- a/samples/bluetooth/st_ble_sensor/CMakeLists.txt +++ b/samples/bluetooth/st_ble_sensor/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(st_ble_sensor) diff --git a/samples/boards/96b_argonkey/microphone/CMakeLists.txt b/samples/boards/96b_argonkey/microphone/CMakeLists.txt index 4c074b19810..c4082736428 100644 --- a/samples/boards/96b_argonkey/microphone/CMakeLists.txt +++ b/samples/boards/96b_argonkey/microphone/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(microphone) diff --git a/samples/boards/96b_argonkey/sensors/CMakeLists.txt b/samples/boards/96b_argonkey/sensors/CMakeLists.txt index c98e65f7edb..fa852ac2e8c 100644 --- a/samples/boards/96b_argonkey/sensors/CMakeLists.txt +++ b/samples/boards/96b_argonkey/sensors/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(96b_argonkey) diff --git a/samples/boards/arc_secure_services/CMakeLists.txt b/samples/boards/arc_secure_services/CMakeLists.txt index f204a3c3412..96cbb884d6b 100644 --- a/samples/boards/arc_secure_services/CMakeLists.txt +++ b/samples/boards/arc_secure_services/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arc_secure_services) diff --git a/samples/boards/bbc_microbit/display/CMakeLists.txt b/samples/boards/bbc_microbit/display/CMakeLists.txt index f3499dded2f..30163fffb26 100644 --- a/samples/boards/bbc_microbit/display/CMakeLists.txt +++ b/samples/boards/bbc_microbit/display/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(display) diff --git a/samples/boards/bbc_microbit/line_follower_robot/CMakeLists.txt b/samples/boards/bbc_microbit/line_follower_robot/CMakeLists.txt index b9d096f135f..c9f6d8529dd 100644 --- a/samples/boards/bbc_microbit/line_follower_robot/CMakeLists.txt +++ b/samples/boards/bbc_microbit/line_follower_robot/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(robot) diff --git a/samples/boards/bbc_microbit/pong/CMakeLists.txt b/samples/boards/bbc_microbit/pong/CMakeLists.txt index bd813781af7..310f43f1333 100644 --- a/samples/boards/bbc_microbit/pong/CMakeLists.txt +++ b/samples/boards/bbc_microbit/pong/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(pong) diff --git a/samples/boards/bbc_microbit/sound/CMakeLists.txt b/samples/boards/bbc_microbit/sound/CMakeLists.txt index 5d25c605063..6dc25b8ab8c 100644 --- a/samples/boards/bbc_microbit/sound/CMakeLists.txt +++ b/samples/boards/bbc_microbit/sound/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sound) diff --git a/samples/boards/esp32/spiram_test/CMakeLists.txt b/samples/boards/esp32/spiram_test/CMakeLists.txt index 3c7b8f3aa64..cc2415b9d41 100644 --- a/samples/boards/esp32/spiram_test/CMakeLists.txt +++ b/samples/boards/esp32/spiram_test/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(spiram_test) diff --git a/samples/boards/esp32/wifi_station/CMakeLists.txt b/samples/boards/esp32/wifi_station/CMakeLists.txt index 84cd738746a..4d48b22ccc6 100644 --- a/samples/boards/esp32/wifi_station/CMakeLists.txt +++ b/samples/boards/esp32/wifi_station/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(esp32_wifi_station) diff --git a/samples/boards/google_kukui/CMakeLists.txt b/samples/boards/google_kukui/CMakeLists.txt index c7e6017e06c..c0a815a8970 100644 --- a/samples/boards/google_kukui/CMakeLists.txt +++ b/samples/boards/google_kukui/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(google_kukui) diff --git a/samples/boards/intel_s1000_crb/audio/CMakeLists.txt b/samples/boards/intel_s1000_crb/audio/CMakeLists.txt index 4f35c3ab951..d03e1996c20 100644 --- a/samples/boards/intel_s1000_crb/audio/CMakeLists.txt +++ b/samples/boards/intel_s1000_crb/audio/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 set(BOARD intel_s1000_crb) -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(intel_s1000_crb_audio) diff --git a/samples/boards/intel_s1000_crb/dmic/CMakeLists.txt b/samples/boards/intel_s1000_crb/dmic/CMakeLists.txt index 1a2e7cd4493..d94afa520ba 100644 --- a/samples/boards/intel_s1000_crb/dmic/CMakeLists.txt +++ b/samples/boards/intel_s1000_crb/dmic/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 set(BOARD intel_s1000_crb) -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(intel_s1000_crb_dmic) diff --git a/samples/boards/intel_s1000_crb/i2s/CMakeLists.txt b/samples/boards/intel_s1000_crb/i2s/CMakeLists.txt index a601b0f32d8..40bda102d6c 100644 --- a/samples/boards/intel_s1000_crb/i2s/CMakeLists.txt +++ b/samples/boards/intel_s1000_crb/i2s/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 set(BOARD intel_s1000_crb) -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(i2s) diff --git a/samples/boards/mec15xxevb_assy6853/power_management/CMakeLists.txt b/samples/boards/mec15xxevb_assy6853/power_management/CMakeLists.txt index c22e25031ad..edb887ceca9 100644 --- a/samples/boards/mec15xxevb_assy6853/power_management/CMakeLists.txt +++ b/samples/boards/mec15xxevb_assy6853/power_management/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mec15_brd_test) diff --git a/samples/boards/nrf/battery/CMakeLists.txt b/samples/boards/nrf/battery/CMakeLists.txt index dc73244414a..4c9127c1024 100644 --- a/samples/boards/nrf/battery/CMakeLists.txt +++ b/samples/boards/nrf/battery/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(battery) diff --git a/samples/boards/nrf/clock_skew/CMakeLists.txt b/samples/boards/nrf/clock_skew/CMakeLists.txt index 535cb5bd0ec..4279357ccc2 100644 --- a/samples/boards/nrf/clock_skew/CMakeLists.txt +++ b/samples/boards/nrf/clock_skew/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(nrf_clock_skew) diff --git a/samples/boards/nrf/ieee802154/802154_rpmsg/CMakeLists.txt b/samples/boards/nrf/ieee802154/802154_rpmsg/CMakeLists.txt index 6e3bbd49d66..f48a0395cfa 100644 --- a/samples/boards/nrf/ieee802154/802154_rpmsg/CMakeLists.txt +++ b/samples/boards/nrf/ieee802154/802154_rpmsg/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(802154_rpmsg) diff --git a/samples/boards/nrf/mesh/onoff-app/CMakeLists.txt b/samples/boards/nrf/mesh/onoff-app/CMakeLists.txt index ee998fd34e6..57f8eb87179 100644 --- a/samples/boards/nrf/mesh/onoff-app/CMakeLists.txt +++ b/samples/boards/nrf/mesh/onoff-app/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(QEMU_EXTRA_FLAGS -s) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt index 4832f87e727..d83d78877f7 100644 --- a/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt +++ b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(QEMU_EXTRA_FLAGS -s) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/boards/nrf/nrfx/CMakeLists.txt b/samples/boards/nrf/nrfx/CMakeLists.txt index 4823b79cc8c..a01471af7c0 100644 --- a/samples/boards/nrf/nrfx/CMakeLists.txt +++ b/samples/boards/nrf/nrfx/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(nrfx_sample) diff --git a/samples/boards/nrf/nrfx_prs/CMakeLists.txt b/samples/boards/nrf/nrfx_prs/CMakeLists.txt index e12066ffd70..a0828f7ef98 100644 --- a/samples/boards/nrf/nrfx_prs/CMakeLists.txt +++ b/samples/boards/nrf/nrfx_prs/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(nrfx_prs) diff --git a/samples/boards/nrf/system_off/CMakeLists.txt b/samples/boards/nrf/system_off/CMakeLists.txt index 6f5e65cd5fe..9f5e9efdcd9 100644 --- a/samples/boards/nrf/system_off/CMakeLists.txt +++ b/samples/boards/nrf/system_off/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(nrf_system_off) diff --git a/samples/boards/olimex_stm32_e407/ccm/CMakeLists.txt b/samples/boards/olimex_stm32_e407/ccm/CMakeLists.txt index 46a072d2cf7..87797ace227 100644 --- a/samples/boards/olimex_stm32_e407/ccm/CMakeLists.txt +++ b/samples/boards/olimex_stm32_e407/ccm/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ccm) diff --git a/samples/boards/pine64_pinetime/CMakeLists.txt b/samples/boards/pine64_pinetime/CMakeLists.txt index 858b8b0ae39..0f6005dda4c 100644 --- a/samples/boards/pine64_pinetime/CMakeLists.txt +++ b/samples/boards/pine64_pinetime/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sample_pinetime_app) diff --git a/samples/boards/qemu_cortex_a53/reserved_memory/CMakeLists.txt b/samples/boards/qemu_cortex_a53/reserved_memory/CMakeLists.txt index 5ab2764a342..8ac6bcbfc5a 100644 --- a/samples/boards/qemu_cortex_a53/reserved_memory/CMakeLists.txt +++ b/samples/boards/qemu_cortex_a53/reserved_memory/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(reserved_memory) diff --git a/samples/boards/reel_board/mesh_badge/CMakeLists.txt b/samples/boards/reel_board/mesh_badge/CMakeLists.txt index 80de0feca2b..d4dd63e9321 100644 --- a/samples/boards/reel_board/mesh_badge/CMakeLists.txt +++ b/samples/boards/reel_board/mesh_badge/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mesh_badge) diff --git a/samples/boards/sensortile_box/CMakeLists.txt b/samples/boards/sensortile_box/CMakeLists.txt index e6dd728ae0a..b2727229a4e 100644 --- a/samples/boards/sensortile_box/CMakeLists.txt +++ b/samples/boards/sensortile_box/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sensortile_box) diff --git a/samples/boards/stm32/backup_sram/CMakeLists.txt b/samples/boards/stm32/backup_sram/CMakeLists.txt index 0d102376721..57027628490 100644 --- a/samples/boards/stm32/backup_sram/CMakeLists.txt +++ b/samples/boards/stm32/backup_sram/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(stm32_backup_sram) diff --git a/samples/boards/stm32/h7_dual_core/CMakeLists.txt b/samples/boards/stm32/h7_dual_core/CMakeLists.txt index 76c7cb812d8..5c48b0b5245 100644 --- a/samples/boards/stm32/h7_dual_core/CMakeLists.txt +++ b/samples/boards/stm32/h7_dual_core/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(stm32_h7_dual_core) diff --git a/samples/boards/stm32/power_mgmt/blinky/CMakeLists.txt b/samples/boards/stm32/power_mgmt/blinky/CMakeLists.txt index 31f7d4fa9d8..6df891100c0 100644 --- a/samples/boards/stm32/power_mgmt/blinky/CMakeLists.txt +++ b/samples/boards/stm32/power_mgmt/blinky/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(stm32_pm_blinky) diff --git a/samples/boards/ti/cc13x2_cc26x2/system_off/CMakeLists.txt b/samples/boards/ti/cc13x2_cc26x2/system_off/CMakeLists.txt index 01b0d500210..bf75df16cae 100644 --- a/samples/boards/ti/cc13x2_cc26x2/system_off/CMakeLists.txt +++ b/samples/boards/ti/cc13x2_cc26x2/system_off/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(ti_cc13x2_cc26x2_system_off) diff --git a/samples/boards/up_squared/gpio_counter/CMakeLists.txt b/samples/boards/up_squared/gpio_counter/CMakeLists.txt index 865cdc9a8c1..82a09134bf4 100644 --- a/samples/boards/up_squared/gpio_counter/CMakeLists.txt +++ b/samples/boards/up_squared/gpio_counter/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(gpio_counter) diff --git a/samples/compression/lz4/CMakeLists.txt b/samples/compression/lz4/CMakeLists.txt index 939cf708767..60b8d8c77d3 100644 --- a/samples/compression/lz4/CMakeLists.txt +++ b/samples/compression/lz4/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lz4) diff --git a/samples/drivers/adc/CMakeLists.txt b/samples/drivers/adc/CMakeLists.txt index 1e36f6ad972..bfc95ce59ab 100644 --- a/samples/drivers/adc/CMakeLists.txt +++ b/samples/drivers/adc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(ADC) diff --git a/samples/drivers/can/CMakeLists.txt b/samples/drivers/can/CMakeLists.txt index 91dcc22ed4f..1a1812f01bd 100644 --- a/samples/drivers/can/CMakeLists.txt +++ b/samples/drivers/can/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/drivers/clock_control_litex/CMakeLists.txt b/samples/drivers/clock_control_litex/CMakeLists.txt index 0fadbaa15f8..7a02f865d6a 100644 --- a/samples/drivers/clock_control_litex/CMakeLists.txt +++ b/samples/drivers/clock_control_litex/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) 2020 Antmicro # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(clock_control_litex) diff --git a/samples/drivers/counter/alarm/CMakeLists.txt b/samples/drivers/counter/alarm/CMakeLists.txt index bf23f752659..0903eed01a7 100644 --- a/samples/drivers/counter/alarm/CMakeLists.txt +++ b/samples/drivers/counter/alarm/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(counter) diff --git a/samples/drivers/counter/maxim_ds3231/CMakeLists.txt b/samples/drivers/counter/maxim_ds3231/CMakeLists.txt index f1c7c353771..1c7e62fb053 100644 --- a/samples/drivers/counter/maxim_ds3231/CMakeLists.txt +++ b/samples/drivers/counter/maxim_ds3231/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(maxim_ds3231) diff --git a/samples/drivers/crypto/CMakeLists.txt b/samples/drivers/crypto/CMakeLists.txt index e682512f078..04da3f5da0a 100644 --- a/samples/drivers/crypto/CMakeLists.txt +++ b/samples/drivers/crypto/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(crypto) diff --git a/samples/drivers/current_sensing/CMakeLists.txt b/samples/drivers/current_sensing/CMakeLists.txt index eee1ca52509..280fd63bace 100644 --- a/samples/drivers/current_sensing/CMakeLists.txt +++ b/samples/drivers/current_sensing/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(current_sensing) diff --git a/samples/drivers/dac/CMakeLists.txt b/samples/drivers/dac/CMakeLists.txt index 3bcbcb46925..3b6e333ab21 100644 --- a/samples/drivers/dac/CMakeLists.txt +++ b/samples/drivers/dac/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(DAC) diff --git a/samples/drivers/display/CMakeLists.txt b/samples/drivers/display/CMakeLists.txt index 68c139b8946..88dd476d197 100644 --- a/samples/drivers/display/CMakeLists.txt +++ b/samples/drivers/display/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(display) diff --git a/samples/drivers/eeprom/CMakeLists.txt b/samples/drivers/eeprom/CMakeLists.txt index 3f27bed44b6..4bfba022606 100644 --- a/samples/drivers/eeprom/CMakeLists.txt +++ b/samples/drivers/eeprom/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(eeprom) diff --git a/samples/drivers/espi/CMakeLists.txt b/samples/drivers/espi/CMakeLists.txt index e7e3f376f8f..ce0c23b4304 100644 --- a/samples/drivers/espi/CMakeLists.txt +++ b/samples/drivers/espi/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(samples_driver_espi) diff --git a/samples/drivers/flash_shell/CMakeLists.txt b/samples/drivers/flash_shell/CMakeLists.txt index 729fd0b02a1..3d053cd93c8 100644 --- a/samples/drivers/flash_shell/CMakeLists.txt +++ b/samples/drivers/flash_shell/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(flash_shell) diff --git a/samples/drivers/ht16k33/CMakeLists.txt b/samples/drivers/ht16k33/CMakeLists.txt index d81f0eda2f8..0f31bfa6119 100644 --- a/samples/drivers/ht16k33/CMakeLists.txt +++ b/samples/drivers/ht16k33/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ht16k33) diff --git a/samples/drivers/i2c_fujitsu_fram/CMakeLists.txt b/samples/drivers/i2c_fujitsu_fram/CMakeLists.txt index fd0c569575c..ecdf9edc3f4 100644 --- a/samples/drivers/i2c_fujitsu_fram/CMakeLists.txt +++ b/samples/drivers/i2c_fujitsu_fram/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(i2c_fujitsu_fram) diff --git a/samples/drivers/i2s/echo/CMakeLists.txt b/samples/drivers/i2s/echo/CMakeLists.txt index aaf7ff7aeba..87b31d7d8a1 100644 --- a/samples/drivers/i2s/echo/CMakeLists.txt +++ b/samples/drivers/i2s/echo/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(i2s_echo) diff --git a/samples/drivers/i2s/litex/CMakeLists.txt b/samples/drivers/i2s/litex/CMakeLists.txt index a66a4263f64..c1d6af58532 100644 --- a/samples/drivers/i2s/litex/CMakeLists.txt +++ b/samples/drivers/i2s/litex/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(i2s_litex) diff --git a/samples/drivers/jesd216/CMakeLists.txt b/samples/drivers/jesd216/CMakeLists.txt index 292f8d26b62..c33c5e7647a 100644 --- a/samples/drivers/jesd216/CMakeLists.txt +++ b/samples/drivers/jesd216/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(flash_jesd216) diff --git a/samples/drivers/kscan/CMakeLists.txt b/samples/drivers/kscan/CMakeLists.txt index 8a511c51faa..1c5812ccffb 100644 --- a/samples/drivers/kscan/CMakeLists.txt +++ b/samples/drivers/kscan/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(kscan) diff --git a/samples/drivers/kscan_touch/CMakeLists.txt b/samples/drivers/kscan_touch/CMakeLists.txt index 5424ef0e177..ff894f855de 100644 --- a/samples/drivers/kscan_touch/CMakeLists.txt +++ b/samples/drivers/kscan_touch/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(kscan) diff --git a/samples/drivers/lcd_hd44780/CMakeLists.txt b/samples/drivers/lcd_hd44780/CMakeLists.txt index 4e9733d65d2..1d762a741c8 100644 --- a/samples/drivers/lcd_hd44780/CMakeLists.txt +++ b/samples/drivers/lcd_hd44780/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lcd_hd44780) diff --git a/samples/drivers/led_apa102/CMakeLists.txt b/samples/drivers/led_apa102/CMakeLists.txt index bd2e37c126e..d270ab00800 100644 --- a/samples/drivers/led_apa102/CMakeLists.txt +++ b/samples/drivers/led_apa102/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(led_apa102) diff --git a/samples/drivers/led_apa102c_bitbang/CMakeLists.txt b/samples/drivers/led_apa102c_bitbang/CMakeLists.txt index fbc901c37dc..b0f4fc789ef 100644 --- a/samples/drivers/led_apa102c_bitbang/CMakeLists.txt +++ b/samples/drivers/led_apa102c_bitbang/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(led_apa102c) diff --git a/samples/drivers/led_lp3943/CMakeLists.txt b/samples/drivers/led_lp3943/CMakeLists.txt index 2b22c0471ea..ee49c6c7b5b 100644 --- a/samples/drivers/led_lp3943/CMakeLists.txt +++ b/samples/drivers/led_lp3943/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(led_lp3943) diff --git a/samples/drivers/led_lp503x/CMakeLists.txt b/samples/drivers/led_lp503x/CMakeLists.txt index 53781856c52..ff0fd25e2ed 100644 --- a/samples/drivers/led_lp503x/CMakeLists.txt +++ b/samples/drivers/led_lp503x/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(led_lp503x) diff --git a/samples/drivers/led_lp5562/CMakeLists.txt b/samples/drivers/led_lp5562/CMakeLists.txt index f6cec95c861..2ae58bbc34e 100644 --- a/samples/drivers/led_lp5562/CMakeLists.txt +++ b/samples/drivers/led_lp5562/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(led_lp5562) diff --git a/samples/drivers/led_lpd8806/CMakeLists.txt b/samples/drivers/led_lpd8806/CMakeLists.txt index aaea61f0505..6220933b5f9 100644 --- a/samples/drivers/led_lpd8806/CMakeLists.txt +++ b/samples/drivers/led_lpd8806/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(led_lpd8806) diff --git a/samples/drivers/led_pca9633/CMakeLists.txt b/samples/drivers/led_pca9633/CMakeLists.txt index 971c3ffebe0..539e84a5fe6 100644 --- a/samples/drivers/led_pca9633/CMakeLists.txt +++ b/samples/drivers/led_pca9633/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(led_pca9633) diff --git a/samples/drivers/led_pwm/CMakeLists.txt b/samples/drivers/led_pwm/CMakeLists.txt index 909b20d9278..e22e6cdfd6f 100644 --- a/samples/drivers/led_pwm/CMakeLists.txt +++ b/samples/drivers/led_pwm/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(led_pwm) diff --git a/samples/drivers/led_sx1509b_intensity/CMakeLists.txt b/samples/drivers/led_sx1509b_intensity/CMakeLists.txt index 413db6a56db..6fe89fcb243 100644 --- a/samples/drivers/led_sx1509b_intensity/CMakeLists.txt +++ b/samples/drivers/led_sx1509b_intensity/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(led_sx1509b_intensity) diff --git a/samples/drivers/led_ws2812/CMakeLists.txt b/samples/drivers/led_ws2812/CMakeLists.txt index a513853ae6d..6a2883198d3 100644 --- a/samples/drivers/led_ws2812/CMakeLists.txt +++ b/samples/drivers/led_ws2812/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(led_ws2812) diff --git a/samples/drivers/lora/receive/CMakeLists.txt b/samples/drivers/lora/receive/CMakeLists.txt index b85a506b03a..2d6cf147fcb 100644 --- a/samples/drivers/lora/receive/CMakeLists.txt +++ b/samples/drivers/lora/receive/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lora_receive) diff --git a/samples/drivers/lora/send/CMakeLists.txt b/samples/drivers/lora/send/CMakeLists.txt index 3906b1c6fdc..c8869c3a5b4 100644 --- a/samples/drivers/lora/send/CMakeLists.txt +++ b/samples/drivers/lora/send/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lora_send) diff --git a/samples/drivers/misc/ft800/CMakeLists.txt b/samples/drivers/misc/ft800/CMakeLists.txt index ae85948d21d..340f6daef78 100644 --- a/samples/drivers/misc/ft800/CMakeLists.txt +++ b/samples/drivers/misc/ft800/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ft800) diff --git a/samples/drivers/peci/CMakeLists.txt b/samples/drivers/peci/CMakeLists.txt index 98a85d17bd4..a80b6c32bb6 100644 --- a/samples/drivers/peci/CMakeLists.txt +++ b/samples/drivers/peci/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(peci) diff --git a/samples/drivers/ps2/CMakeLists.txt b/samples/drivers/ps2/CMakeLists.txt index 258fc72f21a..9f212186d4a 100644 --- a/samples/drivers/ps2/CMakeLists.txt +++ b/samples/drivers/ps2/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(espi) diff --git a/samples/drivers/soc_flash_nrf/CMakeLists.txt b/samples/drivers/soc_flash_nrf/CMakeLists.txt index 708862c8432..75bf1a4d4c3 100644 --- a/samples/drivers/soc_flash_nrf/CMakeLists.txt +++ b/samples/drivers/soc_flash_nrf/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(soc_flash_nrf) diff --git a/samples/drivers/spi_flash/CMakeLists.txt b/samples/drivers/spi_flash/CMakeLists.txt index 233611ddc79..d2c4ba3cf08 100644 --- a/samples/drivers/spi_flash/CMakeLists.txt +++ b/samples/drivers/spi_flash/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(spi_flash) diff --git a/samples/drivers/spi_flash_at45/CMakeLists.txt b/samples/drivers/spi_flash_at45/CMakeLists.txt index cf8b075593d..6444bcfeae5 100644 --- a/samples/drivers/spi_flash_at45/CMakeLists.txt +++ b/samples/drivers/spi_flash_at45/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(spi_flash_at45) diff --git a/samples/drivers/spi_fujitsu_fram/CMakeLists.txt b/samples/drivers/spi_fujitsu_fram/CMakeLists.txt index 8b78e8edfed..7206694da20 100644 --- a/samples/drivers/spi_fujitsu_fram/CMakeLists.txt +++ b/samples/drivers/spi_fujitsu_fram/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(spi_fujitsu_fram) diff --git a/samples/drivers/watchdog/CMakeLists.txt b/samples/drivers/watchdog/CMakeLists.txt index fc2efabe2f9..0296c8d67c7 100644 --- a/samples/drivers/watchdog/CMakeLists.txt +++ b/samples/drivers/watchdog/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(watchdog) diff --git a/samples/hello_world/CMakeLists.txt b/samples/hello_world/CMakeLists.txt index 3e3d0e8149e..ecb7d24bb8f 100644 --- a/samples/hello_world/CMakeLists.txt +++ b/samples/hello_world/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hello_world) diff --git a/samples/kernel/condition_variables/condvar/CMakeLists.txt b/samples/kernel/condition_variables/condvar/CMakeLists.txt index cf088e82fc1..ebb204a0038 100644 --- a/samples/kernel/condition_variables/condvar/CMakeLists.txt +++ b/samples/kernel/condition_variables/condvar/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(condvar) diff --git a/samples/kernel/condition_variables/simple/CMakeLists.txt b/samples/kernel/condition_variables/simple/CMakeLists.txt index cf088e82fc1..ebb204a0038 100644 --- a/samples/kernel/condition_variables/simple/CMakeLists.txt +++ b/samples/kernel/condition_variables/simple/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(condvar) diff --git a/samples/kernel/metairq_dispatch/CMakeLists.txt b/samples/kernel/metairq_dispatch/CMakeLists.txt index 587c1ccd143..fe39b05df2e 100644 --- a/samples/kernel/metairq_dispatch/CMakeLists.txt +++ b/samples/kernel/metairq_dispatch/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(metairq_dispatch) diff --git a/samples/modules/canopennode/CMakeLists.txt b/samples/modules/canopennode/CMakeLists.txt index 3cb954c7b7a..fb792ec299a 100644 --- a/samples/modules/canopennode/CMakeLists.txt +++ b/samples/modules/canopennode/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) macro(app_set_runner_args) board_runner_args(canopen "--node-id=${CONFIG_CANOPEN_NODE_ID}") diff --git a/samples/modules/nanopb/CMakeLists.txt b/samples/modules/nanopb/CMakeLists.txt index 1f5361af5bb..0d5737e5c2f 100644 --- a/samples/modules/nanopb/CMakeLists.txt +++ b/samples/modules/nanopb/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(nanopb_sample) diff --git a/samples/modules/tensorflow/hello_world/CMakeLists.txt b/samples/modules/tensorflow/hello_world/CMakeLists.txt index e3e8b1da4de..3fadd1e18b4 100644 --- a/samples/modules/tensorflow/hello_world/CMakeLists.txt +++ b/samples/modules/tensorflow/hello_world/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tensorflow_hello_world) diff --git a/samples/modules/tensorflow/magic_wand/CMakeLists.txt b/samples/modules/tensorflow/magic_wand/CMakeLists.txt index cd82dd27cf6..27f3e14c326 100644 --- a/samples/modules/tensorflow/magic_wand/CMakeLists.txt +++ b/samples/modules/tensorflow/magic_wand/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tensorflow_magic_wand) diff --git a/samples/net/capture/CMakeLists.txt b/samples/net/capture/CMakeLists.txt index 013cd5f0901..8b9bd7c26ba 100644 --- a/samples/net/capture/CMakeLists.txt +++ b/samples/net/capture/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(net_capture) diff --git a/samples/net/civetweb/http_server/CMakeLists.txt b/samples/net/civetweb/http_server/CMakeLists.txt index 60ac5a06cf7..6a05bbcd4be 100644 --- a/samples/net/civetweb/http_server/CMakeLists.txt +++ b/samples/net/civetweb/http_server/CMakeLists.txt @@ -3,7 +3,7 @@ # # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(common_dir ${CMAKE_CURRENT_SOURCE_DIR}/../common) set(common_src_dir ${common_dir}/src) diff --git a/samples/net/civetweb/websocket_server/CMakeLists.txt b/samples/net/civetweb/websocket_server/CMakeLists.txt index 5598b7b68a9..022e3607628 100644 --- a/samples/net/civetweb/websocket_server/CMakeLists.txt +++ b/samples/net/civetweb/websocket_server/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(common_dir ${CMAKE_CURRENT_SOURCE_DIR}/../common) set(common_src_dir ${common_dir}/src) diff --git a/samples/net/cloud/google_iot_mqtt/CMakeLists.txt b/samples/net/cloud/google_iot_mqtt/CMakeLists.txt index 3d96b0e3090..5b965ea14db 100644 --- a/samples/net/cloud/google_iot_mqtt/CMakeLists.txt +++ b/samples/net/cloud/google_iot_mqtt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(google_iot_mqtt) diff --git a/samples/net/cloud/mqtt_azure/CMakeLists.txt b/samples/net/cloud/mqtt_azure/CMakeLists.txt index 0b69fced414..c12baae7603 100644 --- a/samples/net/cloud/mqtt_azure/CMakeLists.txt +++ b/samples/net/cloud/mqtt_azure/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mqtt-azure) diff --git a/samples/net/cloud/tagoio_http_post/CMakeLists.txt b/samples/net/cloud/tagoio_http_post/CMakeLists.txt index 3c35c226d23..5043ed600b4 100644 --- a/samples/net/cloud/tagoio_http_post/CMakeLists.txt +++ b/samples/net/cloud/tagoio_http_post/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tagoio_http_post) diff --git a/samples/net/dhcpv4_client/CMakeLists.txt b/samples/net/dhcpv4_client/CMakeLists.txt index 5fddfa91a69..0ecd8bd1706 100644 --- a/samples/net/dhcpv4_client/CMakeLists.txt +++ b/samples/net/dhcpv4_client/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dhcpv4_client) diff --git a/samples/net/dns_resolve/CMakeLists.txt b/samples/net/dns_resolve/CMakeLists.txt index a8359590166..1ac07c37fd2 100644 --- a/samples/net/dns_resolve/CMakeLists.txt +++ b/samples/net/dns_resolve/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dns_resolve) diff --git a/samples/net/dsa/CMakeLists.txt b/samples/net/dsa/CMakeLists.txt index 2322543d327..42c8221c8f1 100644 --- a/samples/net/dsa/CMakeLists.txt +++ b/samples/net/dsa/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(dsa) diff --git a/samples/net/eth_native_posix/CMakeLists.txt b/samples/net/eth_native_posix/CMakeLists.txt index 4ba9f16e15c..4b116d7f47f 100644 --- a/samples/net/eth_native_posix/CMakeLists.txt +++ b/samples/net/eth_native_posix/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(eth_native_posix) diff --git a/samples/net/gptp/CMakeLists.txt b/samples/net/gptp/CMakeLists.txt index 0c4d017599f..8e4559f82d3 100644 --- a/samples/net/gptp/CMakeLists.txt +++ b/samples/net/gptp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(gptp) diff --git a/samples/net/gsm_modem/CMakeLists.txt b/samples/net/gsm_modem/CMakeLists.txt index 4a53ac54d6c..b32fe0e5b20 100644 --- a/samples/net/gsm_modem/CMakeLists.txt +++ b/samples/net/gsm_modem/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(gsm_modem) diff --git a/samples/net/ipv4_autoconf/CMakeLists.txt b/samples/net/ipv4_autoconf/CMakeLists.txt index 099eccbe2c6..cb0f8e1b9c6 100644 --- a/samples/net/ipv4_autoconf/CMakeLists.txt +++ b/samples/net/ipv4_autoconf/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ipv4_autoconf) diff --git a/samples/net/lldp/CMakeLists.txt b/samples/net/lldp/CMakeLists.txt index 26aa53f1e7c..0b27f510097 100644 --- a/samples/net/lldp/CMakeLists.txt +++ b/samples/net/lldp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lldp) diff --git a/samples/net/lwm2m_client/CMakeLists.txt b/samples/net/lwm2m_client/CMakeLists.txt index 9f5ac94e1b0..c495a4d3548 100644 --- a/samples/net/lwm2m_client/CMakeLists.txt +++ b/samples/net/lwm2m_client/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lwm2m_client) diff --git a/samples/net/mdns_responder/CMakeLists.txt b/samples/net/mdns_responder/CMakeLists.txt index be8b709a3b4..21efc955050 100644 --- a/samples/net/mdns_responder/CMakeLists.txt +++ b/samples/net/mdns_responder/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mdns_responder) diff --git a/samples/net/mqtt_publisher/CMakeLists.txt b/samples/net/mqtt_publisher/CMakeLists.txt index ffebecbca73..4c6e3c0ef0c 100644 --- a/samples/net/mqtt_publisher/CMakeLists.txt +++ b/samples/net/mqtt_publisher/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mqtt_publisher) diff --git a/samples/net/openthread/coprocessor/CMakeLists.txt b/samples/net/openthread/coprocessor/CMakeLists.txt index e28c2d15f85..abb51560460 100644 --- a/samples/net/openthread/coprocessor/CMakeLists.txt +++ b/samples/net/openthread/coprocessor/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ncp) diff --git a/samples/net/promiscuous_mode/CMakeLists.txt b/samples/net/promiscuous_mode/CMakeLists.txt index a1342d2036d..a0da9a740b7 100644 --- a/samples/net/promiscuous_mode/CMakeLists.txt +++ b/samples/net/promiscuous_mode/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(promiscuous_mode) diff --git a/samples/net/sockets/big_http_download/CMakeLists.txt b/samples/net/sockets/big_http_download/CMakeLists.txt index b86bfa8ae8f..3d13545f6dd 100644 --- a/samples/net/sockets/big_http_download/CMakeLists.txt +++ b/samples/net/sockets/big_http_download/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(big_http_download) diff --git a/samples/net/sockets/can/CMakeLists.txt b/samples/net/sockets/can/CMakeLists.txt index a722fff993d..b29e07cbb7a 100644 --- a/samples/net/sockets/can/CMakeLists.txt +++ b/samples/net/sockets/can/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sockets_can) diff --git a/samples/net/sockets/coap_client/CMakeLists.txt b/samples/net/sockets/coap_client/CMakeLists.txt index fe9ef375472..658a92562ca 100644 --- a/samples/net/sockets/coap_client/CMakeLists.txt +++ b/samples/net/sockets/coap_client/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(coap_client) diff --git a/samples/net/sockets/coap_server/CMakeLists.txt b/samples/net/sockets/coap_server/CMakeLists.txt index 04b3afbfaee..97f67d0a358 100644 --- a/samples/net/sockets/coap_server/CMakeLists.txt +++ b/samples/net/sockets/coap_server/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(coap_server) diff --git a/samples/net/sockets/dumb_http_server/CMakeLists.txt b/samples/net/sockets/dumb_http_server/CMakeLists.txt index 35350d8ca5e..d7524223d8b 100644 --- a/samples/net/sockets/dumb_http_server/CMakeLists.txt +++ b/samples/net/sockets/dumb_http_server/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dumb_http_server) diff --git a/samples/net/sockets/dumb_http_server_mt/CMakeLists.txt b/samples/net/sockets/dumb_http_server_mt/CMakeLists.txt index a5fde1eb25d..69aa851df90 100644 --- a/samples/net/sockets/dumb_http_server_mt/CMakeLists.txt +++ b/samples/net/sockets/dumb_http_server_mt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dumb_http_server_mt) diff --git a/samples/net/sockets/echo/CMakeLists.txt b/samples/net/sockets/echo/CMakeLists.txt index 711c44abcba..1a1c3f4194f 100644 --- a/samples/net/sockets/echo/CMakeLists.txt +++ b/samples/net/sockets/echo/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sockets_echo) diff --git a/samples/net/sockets/echo_async/CMakeLists.txt b/samples/net/sockets/echo_async/CMakeLists.txt index 3c76ef80335..42879273cba 100644 --- a/samples/net/sockets/echo_async/CMakeLists.txt +++ b/samples/net/sockets/echo_async/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sockets_echo_async) diff --git a/samples/net/sockets/echo_async_select/CMakeLists.txt b/samples/net/sockets/echo_async_select/CMakeLists.txt index 1a9c4affeef..47d24c33fa1 100644 --- a/samples/net/sockets/echo_async_select/CMakeLists.txt +++ b/samples/net/sockets/echo_async_select/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sockets_echo_async_select) diff --git a/samples/net/sockets/echo_client/CMakeLists.txt b/samples/net/sockets/echo_client/CMakeLists.txt index 3a4c160c3f9..3222441653b 100644 --- a/samples/net/sockets/echo_client/CMakeLists.txt +++ b/samples/net/sockets/echo_client/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sockets_echo_client) diff --git a/samples/net/sockets/echo_server/CMakeLists.txt b/samples/net/sockets/echo_server/CMakeLists.txt index 2e3a030de8b..418a14a5555 100644 --- a/samples/net/sockets/echo_server/CMakeLists.txt +++ b/samples/net/sockets/echo_server/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sockets_echo_server) diff --git a/samples/net/sockets/http_client/CMakeLists.txt b/samples/net/sockets/http_client/CMakeLists.txt index 82465eda1f7..b13b4fd09b5 100644 --- a/samples/net/sockets/http_client/CMakeLists.txt +++ b/samples/net/sockets/http_client/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(http_client) diff --git a/samples/net/sockets/http_get/CMakeLists.txt b/samples/net/sockets/http_get/CMakeLists.txt index 8bdafff382d..4813c956b3e 100644 --- a/samples/net/sockets/http_get/CMakeLists.txt +++ b/samples/net/sockets/http_get/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(http_get) diff --git a/samples/net/sockets/net_mgmt/CMakeLists.txt b/samples/net/sockets/net_mgmt/CMakeLists.txt index 89460af3dab..8840d271b81 100644 --- a/samples/net/sockets/net_mgmt/CMakeLists.txt +++ b/samples/net/sockets/net_mgmt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sockets_net_mgmt) diff --git a/samples/net/sockets/packet/CMakeLists.txt b/samples/net/sockets/packet/CMakeLists.txt index a9310d5f0bc..565391bf0f7 100644 --- a/samples/net/sockets/packet/CMakeLists.txt +++ b/samples/net/sockets/packet/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sockets_echo_server) diff --git a/samples/net/sockets/sntp_client/CMakeLists.txt b/samples/net/sockets/sntp_client/CMakeLists.txt index 411418d8adb..3d23993968b 100644 --- a/samples/net/sockets/sntp_client/CMakeLists.txt +++ b/samples/net/sockets/sntp_client/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sntp_client) diff --git a/samples/net/sockets/socketpair/CMakeLists.txt b/samples/net/sockets/socketpair/CMakeLists.txt index 85794d7620e..04318631e5c 100644 --- a/samples/net/sockets/socketpair/CMakeLists.txt +++ b/samples/net/sockets/socketpair/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sockets_socketpair) diff --git a/samples/net/sockets/tcp/CMakeLists.txt b/samples/net/sockets/tcp/CMakeLists.txt index 682ba7ceace..5d07bb4e3c8 100644 --- a/samples/net/sockets/tcp/CMakeLists.txt +++ b/samples/net/sockets/tcp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tcp) diff --git a/samples/net/sockets/txtime/CMakeLists.txt b/samples/net/sockets/txtime/CMakeLists.txt index 1120e3bc9fc..1808018c3aa 100644 --- a/samples/net/sockets/txtime/CMakeLists.txt +++ b/samples/net/sockets/txtime/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(sockets_txtime) diff --git a/samples/net/sockets/websocket_client/CMakeLists.txt b/samples/net/sockets/websocket_client/CMakeLists.txt index 82465eda1f7..b13b4fd09b5 100644 --- a/samples/net/sockets/websocket_client/CMakeLists.txt +++ b/samples/net/sockets/websocket_client/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(http_client) diff --git a/samples/net/stats/CMakeLists.txt b/samples/net/stats/CMakeLists.txt index ea39f3b8296..13cc1e8a871 100644 --- a/samples/net/stats/CMakeLists.txt +++ b/samples/net/stats/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(stats) diff --git a/samples/net/syslog_net/CMakeLists.txt b/samples/net/syslog_net/CMakeLists.txt index 648efb200d2..c6c052e8a90 100644 --- a/samples/net/syslog_net/CMakeLists.txt +++ b/samples/net/syslog_net/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(syslog_net) diff --git a/samples/net/telnet/CMakeLists.txt b/samples/net/telnet/CMakeLists.txt index 637467a0ce5..342f2dbee48 100644 --- a/samples/net/telnet/CMakeLists.txt +++ b/samples/net/telnet/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(telnet) diff --git a/samples/net/virtual/CMakeLists.txt b/samples/net/virtual/CMakeLists.txt index c1df1159546..d230b479406 100644 --- a/samples/net/virtual/CMakeLists.txt +++ b/samples/net/virtual/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(virtual_network_interface) diff --git a/samples/net/vlan/CMakeLists.txt b/samples/net/vlan/CMakeLists.txt index 5b27dd3c1d5..72b54d25e8a 100644 --- a/samples/net/vlan/CMakeLists.txt +++ b/samples/net/vlan/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(vlan) diff --git a/samples/net/wifi/CMakeLists.txt b/samples/net/wifi/CMakeLists.txt index 33d5eb78fc6..a87adf43fd2 100644 --- a/samples/net/wifi/CMakeLists.txt +++ b/samples/net/wifi/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(wifi) diff --git a/samples/net/wpan_serial/CMakeLists.txt b/samples/net/wpan_serial/CMakeLists.txt index b213c9b5903..f2d8a46696f 100644 --- a/samples/net/wpan_serial/CMakeLists.txt +++ b/samples/net/wpan_serial/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(wpan_serial) diff --git a/samples/net/wpanusb/CMakeLists.txt b/samples/net/wpanusb/CMakeLists.txt index 8738a7cfcba..82b85149d5c 100644 --- a/samples/net/wpanusb/CMakeLists.txt +++ b/samples/net/wpanusb/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(wpanusb) diff --git a/samples/net/zperf/CMakeLists.txt b/samples/net/zperf/CMakeLists.txt index 0d0de4e9b79..c9b12350383 100644 --- a/samples/net/zperf/CMakeLists.txt +++ b/samples/net/zperf/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(zperf) diff --git a/samples/philosophers/CMakeLists.txt b/samples/philosophers/CMakeLists.txt index bf2aa3a0caa..eccb0bd6f42 100644 --- a/samples/philosophers/CMakeLists.txt +++ b/samples/philosophers/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(philosophers) diff --git a/samples/posix/eventfd/CMakeLists.txt b/samples/posix/eventfd/CMakeLists.txt index 20f188fe40a..90227d35c64 100644 --- a/samples/posix/eventfd/CMakeLists.txt +++ b/samples/posix/eventfd/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(eventfd) diff --git a/samples/posix/gettimeofday/CMakeLists.txt b/samples/posix/gettimeofday/CMakeLists.txt index 06ba22a1b56..b174b1dd913 100644 --- a/samples/posix/gettimeofday/CMakeLists.txt +++ b/samples/posix/gettimeofday/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(gettimeofday) diff --git a/samples/sensor/adt7420/CMakeLists.txt b/samples/sensor/adt7420/CMakeLists.txt index 401f804f33a..579bac35793 100644 --- a/samples/sensor/adt7420/CMakeLists.txt +++ b/samples/sensor/adt7420/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(adt7420) diff --git a/samples/sensor/adxl362/CMakeLists.txt b/samples/sensor/adxl362/CMakeLists.txt index 8ac49ddd846..4c2b8dd812d 100644 --- a/samples/sensor/adxl362/CMakeLists.txt +++ b/samples/sensor/adxl362/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(adxl362) diff --git a/samples/sensor/adxl372/CMakeLists.txt b/samples/sensor/adxl372/CMakeLists.txt index 37e5720525c..d2e7123b0e1 100644 --- a/samples/sensor/adxl372/CMakeLists.txt +++ b/samples/sensor/adxl372/CMakeLists.txt @@ -3,7 +3,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(adxl372) diff --git a/samples/sensor/amg88xx/CMakeLists.txt b/samples/sensor/amg88xx/CMakeLists.txt index ff17b9cdceb..1099657483c 100644 --- a/samples/sensor/amg88xx/CMakeLists.txt +++ b/samples/sensor/amg88xx/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(amg88xx) diff --git a/samples/sensor/ams_iAQcore/CMakeLists.txt b/samples/sensor/ams_iAQcore/CMakeLists.txt index 82287f03c62..c570a9d8510 100644 --- a/samples/sensor/ams_iAQcore/CMakeLists.txt +++ b/samples/sensor/ams_iAQcore/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(DTC_OVERLAY_FILE "${CMAKE_CURRENT_SOURCE_DIR}/iaq_core.overlay") diff --git a/samples/sensor/apds9960/CMakeLists.txt b/samples/sensor/apds9960/CMakeLists.txt index 2570259549a..f687ff110c9 100644 --- a/samples/sensor/apds9960/CMakeLists.txt +++ b/samples/sensor/apds9960/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(apds9960) diff --git a/samples/sensor/bme280/CMakeLists.txt b/samples/sensor/bme280/CMakeLists.txt index 267791f7e7e..5b530feb486 100644 --- a/samples/sensor/bme280/CMakeLists.txt +++ b/samples/sensor/bme280/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bme280) diff --git a/samples/sensor/bme680/CMakeLists.txt b/samples/sensor/bme680/CMakeLists.txt index 9198f51fd1f..3c5ab3d6a8a 100644 --- a/samples/sensor/bme680/CMakeLists.txt +++ b/samples/sensor/bme680/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bme680) diff --git a/samples/sensor/bmg160/CMakeLists.txt b/samples/sensor/bmg160/CMakeLists.txt index d374e16b2de..c9531cd38ff 100644 --- a/samples/sensor/bmg160/CMakeLists.txt +++ b/samples/sensor/bmg160/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bmg160) diff --git a/samples/sensor/bmi270/CMakeLists.txt b/samples/sensor/bmi270/CMakeLists.txt index 71da5f92031..f228ddeacec 100644 --- a/samples/sensor/bmi270/CMakeLists.txt +++ b/samples/sensor/bmi270/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(NONE) diff --git a/samples/sensor/bmm150/CMakeLists.txt b/samples/sensor/bmm150/CMakeLists.txt index e2ea64f6412..7f6fae6d088 100644 --- a/samples/sensor/bmm150/CMakeLists.txt +++ b/samples/sensor/bmm150/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bmm150) diff --git a/samples/sensor/bq274xx/CMakeLists.txt b/samples/sensor/bq274xx/CMakeLists.txt index 2ac467381d6..4c340ab6c13 100644 --- a/samples/sensor/bq274xx/CMakeLists.txt +++ b/samples/sensor/bq274xx/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bq274xx) diff --git a/samples/sensor/ccs811/CMakeLists.txt b/samples/sensor/ccs811/CMakeLists.txt index b2b883d4332..4b20c12c003 100644 --- a/samples/sensor/ccs811/CMakeLists.txt +++ b/samples/sensor/ccs811/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ccs811) diff --git a/samples/sensor/dht/CMakeLists.txt b/samples/sensor/dht/CMakeLists.txt index b22515e422f..3a4d689c082 100644 --- a/samples/sensor/dht/CMakeLists.txt +++ b/samples/sensor/dht/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dht) diff --git a/samples/sensor/dps310/CMakeLists.txt b/samples/sensor/dps310/CMakeLists.txt index ba8f8618441..2e3e38a3143 100644 --- a/samples/sensor/dps310/CMakeLists.txt +++ b/samples/sensor/dps310/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dps310) diff --git a/samples/sensor/ens210/CMakeLists.txt b/samples/sensor/ens210/CMakeLists.txt index 96a8a6b6e35..d4e19f92e1b 100644 --- a/samples/sensor/ens210/CMakeLists.txt +++ b/samples/sensor/ens210/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(DTC_OVERLAY_FILE "${CMAKE_CURRENT_SOURCE_DIR}/ens210.overlay") diff --git a/samples/sensor/fdc2x1x/CMakeLists.txt b/samples/sensor/fdc2x1x/CMakeLists.txt index 02b8e9b00b6..603367f79f2 100644 --- a/samples/sensor/fdc2x1x/CMakeLists.txt +++ b/samples/sensor/fdc2x1x/CMakeLists.txt @@ -3,7 +3,7 @@ # # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(fdc2x1x) diff --git a/samples/sensor/fxas21002/CMakeLists.txt b/samples/sensor/fxas21002/CMakeLists.txt index 72c58b62463..49d96ced810 100644 --- a/samples/sensor/fxas21002/CMakeLists.txt +++ b/samples/sensor/fxas21002/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fxas21002) diff --git a/samples/sensor/fxos8700-hid/CMakeLists.txt b/samples/sensor/fxos8700-hid/CMakeLists.txt index cbde57024a0..e9d8e00fa59 100644 --- a/samples/sensor/fxos8700-hid/CMakeLists.txt +++ b/samples/sensor/fxos8700-hid/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fxos8700-hid) diff --git a/samples/sensor/fxos8700/CMakeLists.txt b/samples/sensor/fxos8700/CMakeLists.txt index 4209056138c..f98e492da2c 100644 --- a/samples/sensor/fxos8700/CMakeLists.txt +++ b/samples/sensor/fxos8700/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fxos8700) diff --git a/samples/sensor/grove_light/CMakeLists.txt b/samples/sensor/grove_light/CMakeLists.txt index c807381851d..7c0b23d0778 100644 --- a/samples/sensor/grove_light/CMakeLists.txt +++ b/samples/sensor/grove_light/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(grove_light) diff --git a/samples/sensor/grove_temperature/CMakeLists.txt b/samples/sensor/grove_temperature/CMakeLists.txt index 01706e9a631..74f9ada6d76 100644 --- a/samples/sensor/grove_temperature/CMakeLists.txt +++ b/samples/sensor/grove_temperature/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(grove_temperature) diff --git a/samples/sensor/hmc5883l/CMakeLists.txt b/samples/sensor/hmc5883l/CMakeLists.txt index 703a758a71b..147c0a4c786 100644 --- a/samples/sensor/hmc5883l/CMakeLists.txt +++ b/samples/sensor/hmc5883l/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hmc5883l) diff --git a/samples/sensor/hts221/CMakeLists.txt b/samples/sensor/hts221/CMakeLists.txt index cae25c9a6c7..40d76753bd3 100644 --- a/samples/sensor/hts221/CMakeLists.txt +++ b/samples/sensor/hts221/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hts221) diff --git a/samples/sensor/icm42605/CMakeLists.txt b/samples/sensor/icm42605/CMakeLists.txt index 43629dec9ed..56f9a48c669 100644 --- a/samples/sensor/icm42605/CMakeLists.txt +++ b/samples/sensor/icm42605/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(icm42605) diff --git a/samples/sensor/isl29035/CMakeLists.txt b/samples/sensor/isl29035/CMakeLists.txt index b1140b8b940..44453c9e991 100644 --- a/samples/sensor/isl29035/CMakeLists.txt +++ b/samples/sensor/isl29035/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(isl29035) diff --git a/samples/sensor/lis2dh/CMakeLists.txt b/samples/sensor/lis2dh/CMakeLists.txt index b6e2713ff1f..6a8000fca59 100644 --- a/samples/sensor/lis2dh/CMakeLists.txt +++ b/samples/sensor/lis2dh/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lis2dh) diff --git a/samples/sensor/lps22hb/CMakeLists.txt b/samples/sensor/lps22hb/CMakeLists.txt index 483acf0bdf4..f1fc50850c8 100644 --- a/samples/sensor/lps22hb/CMakeLists.txt +++ b/samples/sensor/lps22hb/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lps22hb) diff --git a/samples/sensor/lps22hh/CMakeLists.txt b/samples/sensor/lps22hh/CMakeLists.txt index 7c2077d54ce..613e21a7f67 100644 --- a/samples/sensor/lps22hh/CMakeLists.txt +++ b/samples/sensor/lps22hh/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lps22hh) diff --git a/samples/sensor/lsm303dlhc/CMakeLists.txt b/samples/sensor/lsm303dlhc/CMakeLists.txt index 031c8003c7c..0169eee0c5e 100644 --- a/samples/sensor/lsm303dlhc/CMakeLists.txt +++ b/samples/sensor/lsm303dlhc/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lsm303dlhc) diff --git a/samples/sensor/lsm6dsl/CMakeLists.txt b/samples/sensor/lsm6dsl/CMakeLists.txt index 495088c7ba7..92fa5f6311d 100644 --- a/samples/sensor/lsm6dsl/CMakeLists.txt +++ b/samples/sensor/lsm6dsl/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lsm6dsl) diff --git a/samples/sensor/lsm6dso/CMakeLists.txt b/samples/sensor/lsm6dso/CMakeLists.txt index 2258df42818..03aa97628d1 100644 --- a/samples/sensor/lsm6dso/CMakeLists.txt +++ b/samples/sensor/lsm6dso/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lsm6dso) diff --git a/samples/sensor/magn_polling/CMakeLists.txt b/samples/sensor/magn_polling/CMakeLists.txt index 84e60f83f81..8ea27e740a2 100644 --- a/samples/sensor/magn_polling/CMakeLists.txt +++ b/samples/sensor/magn_polling/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(magn_polling) diff --git a/samples/sensor/max17262/CMakeLists.txt b/samples/sensor/max17262/CMakeLists.txt index b1d92ae70a4..df0b6f33183 100644 --- a/samples/sensor/max17262/CMakeLists.txt +++ b/samples/sensor/max17262/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(max17262) diff --git a/samples/sensor/max30101/CMakeLists.txt b/samples/sensor/max30101/CMakeLists.txt index a405ecf4317..6e4f8dd30ab 100644 --- a/samples/sensor/max30101/CMakeLists.txt +++ b/samples/sensor/max30101/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(max30101) diff --git a/samples/sensor/max44009/CMakeLists.txt b/samples/sensor/max44009/CMakeLists.txt index f53881cf3a4..efbd549063e 100644 --- a/samples/sensor/max44009/CMakeLists.txt +++ b/samples/sensor/max44009/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(max44009) diff --git a/samples/sensor/max6675/CMakeLists.txt b/samples/sensor/max6675/CMakeLists.txt index 628e373bdbc..b2dcd3356f0 100644 --- a/samples/sensor/max6675/CMakeLists.txt +++ b/samples/sensor/max6675/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) 2021 Teslabs Engineering S.L. # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(max6675) diff --git a/samples/sensor/mcp9808/CMakeLists.txt b/samples/sensor/mcp9808/CMakeLists.txt index 845b4ea50be..274ac07909c 100644 --- a/samples/sensor/mcp9808/CMakeLists.txt +++ b/samples/sensor/mcp9808/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mcp9808) diff --git a/samples/sensor/mcux_acmp/CMakeLists.txt b/samples/sensor/mcux_acmp/CMakeLists.txt index bcf23f990a3..d22165ec6bf 100644 --- a/samples/sensor/mcux_acmp/CMakeLists.txt +++ b/samples/sensor/mcux_acmp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mcux_acmp) diff --git a/samples/sensor/mpr/CMakeLists.txt b/samples/sensor/mpr/CMakeLists.txt index 3d83892f973..d5e1093772f 100644 --- a/samples/sensor/mpr/CMakeLists.txt +++ b/samples/sensor/mpr/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(mpr) diff --git a/samples/sensor/mpu6050/CMakeLists.txt b/samples/sensor/mpu6050/CMakeLists.txt index bf7953ecdb8..89f5703a902 100644 --- a/samples/sensor/mpu6050/CMakeLists.txt +++ b/samples/sensor/mpu6050/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mpu6050) diff --git a/samples/sensor/ms5837/CMakeLists.txt b/samples/sensor/ms5837/CMakeLists.txt index fecd283e07e..e0fb3837058 100644 --- a/samples/sensor/ms5837/CMakeLists.txt +++ b/samples/sensor/ms5837/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ms5837) diff --git a/samples/sensor/qdec/CMakeLists.txt b/samples/sensor/qdec/CMakeLists.txt index fa78fa5e610..98ab88bbd7f 100644 --- a/samples/sensor/qdec/CMakeLists.txt +++ b/samples/sensor/qdec/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(thermometer) diff --git a/samples/sensor/sensor_shell/CMakeLists.txt b/samples/sensor/sensor_shell/CMakeLists.txt index 17ee099901e..86a0a84923d 100644 --- a/samples/sensor/sensor_shell/CMakeLists.txt +++ b/samples/sensor/sensor_shell/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.8.2) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sensor_shell) diff --git a/samples/sensor/sgp40_sht4x/CMakeLists.txt b/samples/sensor/sgp40_sht4x/CMakeLists.txt index a7a405e3a28..fa25c5e3f76 100644 --- a/samples/sensor/sgp40_sht4x/CMakeLists.txt +++ b/samples/sensor/sgp40_sht4x/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.8.2) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sgp40_sht4x) diff --git a/samples/sensor/sht3xd/CMakeLists.txt b/samples/sensor/sht3xd/CMakeLists.txt index 05a5a5eca52..0b415c287ca 100644 --- a/samples/sensor/sht3xd/CMakeLists.txt +++ b/samples/sensor/sht3xd/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sht3xd) diff --git a/samples/sensor/sm351lt/CMakeLists.txt b/samples/sensor/sm351lt/CMakeLists.txt index 6bdc739360c..fd29b625614 100644 --- a/samples/sensor/sm351lt/CMakeLists.txt +++ b/samples/sensor/sm351lt/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sm351lt) diff --git a/samples/sensor/stm32_temp_sensor/CMakeLists.txt b/samples/sensor/stm32_temp_sensor/CMakeLists.txt index df28612cc9f..05ff4b9c689 100644 --- a/samples/sensor/stm32_temp_sensor/CMakeLists.txt +++ b/samples/sensor/stm32_temp_sensor/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(stm32_temp_sensor) diff --git a/samples/sensor/sx9500/CMakeLists.txt b/samples/sensor/sx9500/CMakeLists.txt index 04b721bdc74..9cb4a81ae5c 100644 --- a/samples/sensor/sx9500/CMakeLists.txt +++ b/samples/sensor/sx9500/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sx9500) diff --git a/samples/sensor/th02/CMakeLists.txt b/samples/sensor/th02/CMakeLists.txt index 75d7d52aa8f..e37698fbb75 100644 --- a/samples/sensor/th02/CMakeLists.txt +++ b/samples/sensor/th02/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(th02) diff --git a/samples/sensor/thermometer/CMakeLists.txt b/samples/sensor/thermometer/CMakeLists.txt index fa78fa5e610..98ab88bbd7f 100644 --- a/samples/sensor/thermometer/CMakeLists.txt +++ b/samples/sensor/thermometer/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(thermometer) diff --git a/samples/sensor/ti_hdc/CMakeLists.txt b/samples/sensor/ti_hdc/CMakeLists.txt index e6d7591ff5c..147f22fc987 100644 --- a/samples/sensor/ti_hdc/CMakeLists.txt +++ b/samples/sensor/ti_hdc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ti_hdc) diff --git a/samples/sensor/tmp112/CMakeLists.txt b/samples/sensor/tmp112/CMakeLists.txt index e292e7797e5..255bcc286c6 100644 --- a/samples/sensor/tmp112/CMakeLists.txt +++ b/samples/sensor/tmp112/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tmp112) diff --git a/samples/sensor/tmp116/CMakeLists.txt b/samples/sensor/tmp116/CMakeLists.txt index 73faeb99734..ccbe7ff815a 100644 --- a/samples/sensor/tmp116/CMakeLists.txt +++ b/samples/sensor/tmp116/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tmp116) diff --git a/samples/sensor/vcnl4040/CMakeLists.txt b/samples/sensor/vcnl4040/CMakeLists.txt index c6e95209a97..647bc380e39 100644 --- a/samples/sensor/vcnl4040/CMakeLists.txt +++ b/samples/sensor/vcnl4040/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(vcnl4040) diff --git a/samples/sensor/vl53l0x/CMakeLists.txt b/samples/sensor/vl53l0x/CMakeLists.txt index 6c6515f4c80..691250b7f43 100644 --- a/samples/sensor/vl53l0x/CMakeLists.txt +++ b/samples/sensor/vl53l0x/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(vl53l0x) diff --git a/samples/sensor/wsen_itds/CMakeLists.txt b/samples/sensor/wsen_itds/CMakeLists.txt index e07081972f0..bfe417bdfed 100644 --- a/samples/sensor/wsen_itds/CMakeLists.txt +++ b/samples/sensor/wsen_itds/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(wsen_itds) diff --git a/samples/shields/lmp90100_evb/rtd/CMakeLists.txt b/samples/shields/lmp90100_evb/rtd/CMakeLists.txt index f92d1e9d64e..d1c9e916b5a 100644 --- a/samples/shields/lmp90100_evb/rtd/CMakeLists.txt +++ b/samples/shields/lmp90100_evb/rtd/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # This sample is specific to lmp90100_evb shield. Enforce -DSHIELD option set(SHIELD lmp90100_evb) diff --git a/samples/shields/x_nucleo_iks01a1/CMakeLists.txt b/samples/shields/x_nucleo_iks01a1/CMakeLists.txt index 93893fae4f4..5c7fcb86e3d 100644 --- a/samples/shields/x_nucleo_iks01a1/CMakeLists.txt +++ b/samples/shields/x_nucleo_iks01a1/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # This sample is specific to x_nucleo_iks01a1 shield. Enforce -DSHIELD option set(SHIELD x_nucleo_iks01a1) diff --git a/samples/shields/x_nucleo_iks01a2/sensorhub/CMakeLists.txt b/samples/shields/x_nucleo_iks01a2/sensorhub/CMakeLists.txt index 2731d023b83..ea374d84e9a 100644 --- a/samples/shields/x_nucleo_iks01a2/sensorhub/CMakeLists.txt +++ b/samples/shields/x_nucleo_iks01a2/sensorhub/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # This sample is specific to x_nucleo_iks01a2 shield. Enforce -DSHIELD option set(SHIELD x_nucleo_iks01a2_shub) diff --git a/samples/shields/x_nucleo_iks01a2/standard/CMakeLists.txt b/samples/shields/x_nucleo_iks01a2/standard/CMakeLists.txt index fbf667137de..a1b9df5a216 100644 --- a/samples/shields/x_nucleo_iks01a2/standard/CMakeLists.txt +++ b/samples/shields/x_nucleo_iks01a2/standard/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # This sample is specific to x_nucleo_iks01a2 shield. Enforce -DSHIELD option set(SHIELD x_nucleo_iks01a2) diff --git a/samples/shields/x_nucleo_iks01a3/sensorhub/CMakeLists.txt b/samples/shields/x_nucleo_iks01a3/sensorhub/CMakeLists.txt index 3d659726077..6bea053fb27 100644 --- a/samples/shields/x_nucleo_iks01a3/sensorhub/CMakeLists.txt +++ b/samples/shields/x_nucleo_iks01a3/sensorhub/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # This sample is specific to x_nucleo_iks01a3 shield. Enforce -DSHIELD option set(SHIELD x_nucleo_iks01a3_shub) diff --git a/samples/shields/x_nucleo_iks01a3/standard/CMakeLists.txt b/samples/shields/x_nucleo_iks01a3/standard/CMakeLists.txt index fbf97dcd0a3..9908110c289 100644 --- a/samples/shields/x_nucleo_iks01a3/standard/CMakeLists.txt +++ b/samples/shields/x_nucleo_iks01a3/standard/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # This sample is specific to x_nucleo_iks01a3 shield. Enforce -DSHIELD option set(SHIELD x_nucleo_iks01a3) diff --git a/samples/shields/x_nucleo_iks02a1/microphone/CMakeLists.txt b/samples/shields/x_nucleo_iks02a1/microphone/CMakeLists.txt index 50baa8c565f..d2a1eda33c7 100644 --- a/samples/shields/x_nucleo_iks02a1/microphone/CMakeLists.txt +++ b/samples/shields/x_nucleo_iks02a1/microphone/CMakeLists.txt @@ -1,5 +1,5 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # This sample is specific to x_nucleo_iks02a1 shield. Enforce -DSHIELD option set(SHIELD x_nucleo_iks02a1_mic) diff --git a/samples/shields/x_nucleo_iks02a1/sensorhub/CMakeLists.txt b/samples/shields/x_nucleo_iks02a1/sensorhub/CMakeLists.txt index b47a1f64a18..0b14f8e154b 100644 --- a/samples/shields/x_nucleo_iks02a1/sensorhub/CMakeLists.txt +++ b/samples/shields/x_nucleo_iks02a1/sensorhub/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # This sample is specific to x_nucleo_iks02a1 shield. Enforce -DSHIELD option set(SHIELD x_nucleo_iks02a1_shub) diff --git a/samples/shields/x_nucleo_iks02a1/standard/CMakeLists.txt b/samples/shields/x_nucleo_iks02a1/standard/CMakeLists.txt index e1f0d5c30fa..fd540175f98 100644 --- a/samples/shields/x_nucleo_iks02a1/standard/CMakeLists.txt +++ b/samples/shields/x_nucleo_iks02a1/standard/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # This sample is specific to x_nucleo_iks02a1 shield. Enforce -DSHIELD option set(SHIELD x_nucleo_iks02a1) diff --git a/samples/subsys/audio/sof/CMakeLists.txt b/samples/subsys/audio/sof/CMakeLists.txt index 6f500e87a13..ce3200c1252 100644 --- a/samples/subsys/audio/sof/CMakeLists.txt +++ b/samples/subsys/audio/sof/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(sample_sof) diff --git a/samples/subsys/canbus/isotp/CMakeLists.txt b/samples/subsys/canbus/isotp/CMakeLists.txt index 81400ee9345..20830ebfd36 100644 --- a/samples/subsys/canbus/isotp/CMakeLists.txt +++ b/samples/subsys/canbus/isotp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ISOTP) diff --git a/samples/subsys/console/echo/CMakeLists.txt b/samples/subsys/console/echo/CMakeLists.txt index df4d79b94e9..b3fa769b5b4 100644 --- a/samples/subsys/console/echo/CMakeLists.txt +++ b/samples/subsys/console/echo/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(echo) diff --git a/samples/subsys/console/getchar/CMakeLists.txt b/samples/subsys/console/getchar/CMakeLists.txt index f17a710380e..af523dd7954 100644 --- a/samples/subsys/console/getchar/CMakeLists.txt +++ b/samples/subsys/console/getchar/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(getchar) diff --git a/samples/subsys/console/getline/CMakeLists.txt b/samples/subsys/console/getline/CMakeLists.txt index fbad237eb3f..a5e1241102f 100644 --- a/samples/subsys/console/getline/CMakeLists.txt +++ b/samples/subsys/console/getline/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(getline) diff --git a/samples/subsys/cpp/cpp_synchronization/CMakeLists.txt b/samples/subsys/cpp/cpp_synchronization/CMakeLists.txt index d1a43a219c5..622c7a16e57 100644 --- a/samples/subsys/cpp/cpp_synchronization/CMakeLists.txt +++ b/samples/subsys/cpp/cpp_synchronization/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cpp_synchronization) diff --git a/samples/subsys/debug/gdbstub/CMakeLists.txt b/samples/subsys/debug/gdbstub/CMakeLists.txt index c442f5739a2..695efbff592 100644 --- a/samples/subsys/debug/gdbstub/CMakeLists.txt +++ b/samples/subsys/debug/gdbstub/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if(BOARD MATCHES "qemu_x86") list(APPEND QEMU_EXTRA_FLAGS -serial tcp:127.0.0.1:1234,server) diff --git a/samples/subsys/display/cfb/CMakeLists.txt b/samples/subsys/display/cfb/CMakeLists.txt index 6d5bb6c297a..397385989b2 100644 --- a/samples/subsys/display/cfb/CMakeLists.txt +++ b/samples/subsys/display/cfb/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cfb) diff --git a/samples/subsys/display/cfb_custom_font/CMakeLists.txt b/samples/subsys/display/cfb_custom_font/CMakeLists.txt index e162b5dccfa..6c0115fba17 100644 --- a/samples/subsys/display/cfb_custom_font/CMakeLists.txt +++ b/samples/subsys/display/cfb_custom_font/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) include(${ZEPHYR_BASE}/cmake/cfb.cmake NO_POLICY_SCOPE) diff --git a/samples/subsys/display/cfb_shell/CMakeLists.txt b/samples/subsys/display/cfb_shell/CMakeLists.txt index 6d5bb6c297a..397385989b2 100644 --- a/samples/subsys/display/cfb_shell/CMakeLists.txt +++ b/samples/subsys/display/cfb_shell/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cfb) diff --git a/samples/subsys/display/grove_display/CMakeLists.txt b/samples/subsys/display/grove_display/CMakeLists.txt index 2a017fe247b..2f613e6fe12 100644 --- a/samples/subsys/display/grove_display/CMakeLists.txt +++ b/samples/subsys/display/grove_display/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(grove_display) diff --git a/samples/subsys/display/lvgl/CMakeLists.txt b/samples/subsys/display/lvgl/CMakeLists.txt index 7dd67d404c0..f2f9a2689f1 100644 --- a/samples/subsys/display/lvgl/CMakeLists.txt +++ b/samples/subsys/display/lvgl/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lvgl) diff --git a/samples/subsys/edac/CMakeLists.txt b/samples/subsys/edac/CMakeLists.txt index 83fe8414850..a8845d95da1 100644 --- a/samples/subsys/edac/CMakeLists.txt +++ b/samples/subsys/edac/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(edac) diff --git a/samples/subsys/fs/fat_fs/CMakeLists.txt b/samples/subsys/fs/fat_fs/CMakeLists.txt index 0f7b3f2459b..3f7ed93ed76 100644 --- a/samples/subsys/fs/fat_fs/CMakeLists.txt +++ b/samples/subsys/fs/fat_fs/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mass) diff --git a/samples/subsys/fs/littlefs/CMakeLists.txt b/samples/subsys/fs/littlefs/CMakeLists.txt index 5d069752a3b..4391a453ff8 100644 --- a/samples/subsys/fs/littlefs/CMakeLists.txt +++ b/samples/subsys/fs/littlefs/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(littlefs) diff --git a/samples/subsys/ipc/ipc_service/CMakeLists.txt b/samples/subsys/ipc/ipc_service/CMakeLists.txt index fd250289259..ae9da033f41 100644 --- a/samples/subsys/ipc/ipc_service/CMakeLists.txt +++ b/samples/subsys/ipc/ipc_service/CMakeLists.txt @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(REMOTE_ZEPHYR_DIR ${CMAKE_CURRENT_BINARY_DIR}/ipc_service_remote-prefix/src/ipc_service_remote-build/zephyr) diff --git a/samples/subsys/ipc/ipc_service/remote/CMakeLists.txt b/samples/subsys/ipc/ipc_service/remote/CMakeLists.txt index 54fb2434eac..26526b8cfdf 100644 --- a/samples/subsys/ipc/ipc_service/remote/CMakeLists.txt +++ b/samples/subsys/ipc/ipc_service/remote/CMakeLists.txt @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if("${BOARD}" STREQUAL "nrf5340dk_nrf5340_cpunet") message(INFO " ${BOARD} compile as slave in this sample") diff --git a/samples/subsys/ipc/ipm_imx/CMakeLists.txt b/samples/subsys/ipc/ipm_imx/CMakeLists.txt index 94c1b64d14f..34da44c6600 100644 --- a/samples/subsys/ipc/ipm_imx/CMakeLists.txt +++ b/samples/subsys/ipc/ipm_imx/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ipm_imx) diff --git a/samples/subsys/ipc/ipm_mcux/CMakeLists.txt b/samples/subsys/ipc/ipm_mcux/CMakeLists.txt index 88c1eb3e10d..312ed0b1a05 100644 --- a/samples/subsys/ipc/ipm_mcux/CMakeLists.txt +++ b/samples/subsys/ipc/ipm_mcux/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # Copyright (c) 2017, NXP # # SPDX-License-Identifier: Apache-2.0 diff --git a/samples/subsys/ipc/ipm_mcux/remote/CMakeLists.txt b/samples/subsys/ipc/ipm_mcux/remote/CMakeLists.txt index 038d0be4da3..c92be82d322 100644 --- a/samples/subsys/ipc/ipm_mcux/remote/CMakeLists.txt +++ b/samples/subsys/ipc/ipm_mcux/remote/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # Copyright (c) 2017, NXP # # SPDX-License-Identifier: Apache-2.0 diff --git a/samples/subsys/ipc/ipm_mhu_dual_core/CMakeLists.txt b/samples/subsys/ipc/ipm_mhu_dual_core/CMakeLists.txt index 30e621fe692..83e30447a70 100644 --- a/samples/subsys/ipc/ipm_mhu_dual_core/CMakeLists.txt +++ b/samples/subsys/ipc/ipm_mhu_dual_core/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ipm_mhu_dual_core) diff --git a/samples/subsys/ipc/openamp/CMakeLists.txt b/samples/subsys/ipc/openamp/CMakeLists.txt index 6fd759a3537..be3168ade57 100644 --- a/samples/subsys/ipc/openamp/CMakeLists.txt +++ b/samples/subsys/ipc/openamp/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # Copyright (c) 2018 Nordic Semiconductor ASA # Copyright (c) 2019 Linaro Limited # diff --git a/samples/subsys/ipc/openamp/remote/CMakeLists.txt b/samples/subsys/ipc/openamp/remote/CMakeLists.txt index 108a9c8717a..5228a3956c0 100644 --- a/samples/subsys/ipc/openamp/remote/CMakeLists.txt +++ b/samples/subsys/ipc/openamp/remote/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # Copyright (c) 2018 Nordic Semiconductor ASA # Copyright (c) 2019 Linaro Limited # diff --git a/samples/subsys/ipc/openamp_rsc_table/CMakeLists.txt b/samples/subsys/ipc/openamp_rsc_table/CMakeLists.txt index 61acf121d81..3c4eafd3a3a 100644 --- a/samples/subsys/ipc/openamp_rsc_table/CMakeLists.txt +++ b/samples/subsys/ipc/openamp_rsc_table/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # Copyright (c) 2020 STMicroelectronics # # SPDX-License-Identifier: Apache-2.0 diff --git a/samples/subsys/ipc/rpmsg_multi_instance/CMakeLists.txt b/samples/subsys/ipc/rpmsg_multi_instance/CMakeLists.txt index ac2dea8a186..2e16b04c7b9 100644 --- a/samples/subsys/ipc/rpmsg_multi_instance/CMakeLists.txt +++ b/samples/subsys/ipc/rpmsg_multi_instance/CMakeLists.txt @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(REMOTE_ZEPHYR_DIR ${CMAKE_CURRENT_BINARY_DIR}/rpmsg_multi_instance_remote-prefix/src/rpmsg_multi_instance_remote-build/zephyr) diff --git a/samples/subsys/ipc/rpmsg_multi_instance/remote/CMakeLists.txt b/samples/subsys/ipc/rpmsg_multi_instance/remote/CMakeLists.txt index 7deea3a4f6b..e753d979eb0 100644 --- a/samples/subsys/ipc/rpmsg_multi_instance/remote/CMakeLists.txt +++ b/samples/subsys/ipc/rpmsg_multi_instance/remote/CMakeLists.txt @@ -3,7 +3,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if("${BOARD}" STREQUAL "nrf5340dk_nrf5340_cpunet") message(INFO " ${BOARD} compile as slave in this sample") diff --git a/samples/subsys/ipc/rpmsg_service/CMakeLists.txt b/samples/subsys/ipc/rpmsg_service/CMakeLists.txt index be4370a5456..e24e14aeb45 100644 --- a/samples/subsys/ipc/rpmsg_service/CMakeLists.txt +++ b/samples/subsys/ipc/rpmsg_service/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # Copyright (c) 2019 Linaro Limited # Copyright (c) 2018-2021 Nordic Semiconductor ASA # diff --git a/samples/subsys/ipc/rpmsg_service/remote/CMakeLists.txt b/samples/subsys/ipc/rpmsg_service/remote/CMakeLists.txt index ad23bd8425a..c80c1b0df23 100644 --- a/samples/subsys/ipc/rpmsg_service/remote/CMakeLists.txt +++ b/samples/subsys/ipc/rpmsg_service/remote/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # Copyright (c) 2019 Linaro Limited # Copyright (c) 2018-2021 Nordic Semiconductor ASA # diff --git a/samples/subsys/logging/dictionary/CMakeLists.txt b/samples/subsys/logging/dictionary/CMakeLists.txt index da573f4ae7f..163d0c3ee51 100644 --- a/samples/subsys/logging/dictionary/CMakeLists.txt +++ b/samples/subsys/logging/dictionary/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(logging_dictionary) diff --git a/samples/subsys/logging/logger/CMakeLists.txt b/samples/subsys/logging/logger/CMakeLists.txt index f96c562091f..bd001f344f2 100644 --- a/samples/subsys/logging/logger/CMakeLists.txt +++ b/samples/subsys/logging/logger/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/subsys/logging/syst/CMakeLists.txt b/samples/subsys/logging/syst/CMakeLists.txt index d9cfa374d8b..44dc768cb50 100644 --- a/samples/subsys/logging/syst/CMakeLists.txt +++ b/samples/subsys/logging/syst/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(syst) diff --git a/samples/subsys/lorawan/class_a/CMakeLists.txt b/samples/subsys/lorawan/class_a/CMakeLists.txt index 6c5f3cd9b9b..bf2606e6b4e 100644 --- a/samples/subsys/lorawan/class_a/CMakeLists.txt +++ b/samples/subsys/lorawan/class_a/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lorawan) diff --git a/samples/subsys/mgmt/hawkbit/CMakeLists.txt b/samples/subsys/mgmt/hawkbit/CMakeLists.txt index 016d72142fc..14e587bf7a0 100644 --- a/samples/subsys/mgmt/hawkbit/CMakeLists.txt +++ b/samples/subsys/mgmt/hawkbit/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # This application has its own Kconfig options. set(KCONFIG_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/Kconfig) diff --git a/samples/subsys/mgmt/mcumgr/smp_svr/CMakeLists.txt b/samples/subsys/mgmt/mcumgr/smp_svr/CMakeLists.txt index 8609958e02d..296aac866d6 100644 --- a/samples/subsys/mgmt/mcumgr/smp_svr/CMakeLists.txt +++ b/samples/subsys/mgmt/mcumgr/smp_svr/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # Top-level CMakeLists.txt for the skeleton application. # # Copyright (c) 2017 Open Source Foundries Limited diff --git a/samples/subsys/mgmt/osdp/control_panel/CMakeLists.txt b/samples/subsys/mgmt/osdp/control_panel/CMakeLists.txt index 14146f6f82a..2e8aef0a1db 100644 --- a/samples/subsys/mgmt/osdp/control_panel/CMakeLists.txt +++ b/samples/subsys/mgmt/osdp/control_panel/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(osdp_cp_sample) diff --git a/samples/subsys/mgmt/osdp/peripheral_device/CMakeLists.txt b/samples/subsys/mgmt/osdp/peripheral_device/CMakeLists.txt index fa1b6504f12..7af6b35b293 100644 --- a/samples/subsys/mgmt/osdp/peripheral_device/CMakeLists.txt +++ b/samples/subsys/mgmt/osdp/peripheral_device/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(osdp_pd_sample) diff --git a/samples/subsys/mgmt/updatehub/CMakeLists.txt b/samples/subsys/mgmt/updatehub/CMakeLists.txt index 61e9051ce36..c50700f5856 100644 --- a/samples/subsys/mgmt/updatehub/CMakeLists.txt +++ b/samples/subsys/mgmt/updatehub/CMakeLists.txt @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) # This application has its own Kconfig options. set(KCONFIG_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/Kconfig) diff --git a/samples/subsys/modbus/rtu_client/CMakeLists.txt b/samples/subsys/modbus/rtu_client/CMakeLists.txt index d6f3d5438d3..34f28a1b03e 100644 --- a/samples/subsys/modbus/rtu_client/CMakeLists.txt +++ b/samples/subsys/modbus/rtu_client/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(modbus-rtu-client) diff --git a/samples/subsys/modbus/rtu_server/CMakeLists.txt b/samples/subsys/modbus/rtu_server/CMakeLists.txt index bd75647b93b..6c587934a2f 100644 --- a/samples/subsys/modbus/rtu_server/CMakeLists.txt +++ b/samples/subsys/modbus/rtu_server/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(modbus-rtu-server) diff --git a/samples/subsys/modbus/tcp_gateway/CMakeLists.txt b/samples/subsys/modbus/tcp_gateway/CMakeLists.txt index f8577927b2f..ffb7a880ad2 100644 --- a/samples/subsys/modbus/tcp_gateway/CMakeLists.txt +++ b/samples/subsys/modbus/tcp_gateway/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(modbus-serial-backend) diff --git a/samples/subsys/modbus/tcp_server/CMakeLists.txt b/samples/subsys/modbus/tcp_server/CMakeLists.txt index 8fdc6a23703..43efcbc0758 100644 --- a/samples/subsys/modbus/tcp_server/CMakeLists.txt +++ b/samples/subsys/modbus/tcp_server/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(modbus-tcp-server) diff --git a/samples/subsys/nvs/CMakeLists.txt b/samples/subsys/nvs/CMakeLists.txt index faa8ab16a51..01142e3a395 100644 --- a/samples/subsys/nvs/CMakeLists.txt +++ b/samples/subsys/nvs/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) macro(app_set_runner_args) board_runner_args(dfu-util "--dfuse-modifiers=force:mass-erase") diff --git a/samples/subsys/pm/device_pm/CMakeLists.txt b/samples/subsys/pm/device_pm/CMakeLists.txt index fbb15d2babe..4b3d245c53f 100644 --- a/samples/subsys/pm/device_pm/CMakeLists.txt +++ b/samples/subsys/pm/device_pm/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(device) diff --git a/samples/subsys/portability/cmsis_rtos_v1/philosophers/CMakeLists.txt b/samples/subsys/portability/cmsis_rtos_v1/philosophers/CMakeLists.txt index a3b4e1db98b..57ed4982f73 100644 --- a/samples/subsys/portability/cmsis_rtos_v1/philosophers/CMakeLists.txt +++ b/samples/subsys/portability/cmsis_rtos_v1/philosophers/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(philosophers_cmsis_rtos_v1) diff --git a/samples/subsys/portability/cmsis_rtos_v1/timer_synchronization/CMakeLists.txt b/samples/subsys/portability/cmsis_rtos_v1/timer_synchronization/CMakeLists.txt index a2b3f320ac1..320dac112c7 100644 --- a/samples/subsys/portability/cmsis_rtos_v1/timer_synchronization/CMakeLists.txt +++ b/samples/subsys/portability/cmsis_rtos_v1/timer_synchronization/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_rtos_v1_synchronization) diff --git a/samples/subsys/portability/cmsis_rtos_v2/philosophers/CMakeLists.txt b/samples/subsys/portability/cmsis_rtos_v2/philosophers/CMakeLists.txt index 45a6500bf92..4e736d5d6e7 100644 --- a/samples/subsys/portability/cmsis_rtos_v2/philosophers/CMakeLists.txt +++ b/samples/subsys/portability/cmsis_rtos_v2/philosophers/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(philosophers) diff --git a/samples/subsys/portability/cmsis_rtos_v2/timer_synchronization/CMakeLists.txt b/samples/subsys/portability/cmsis_rtos_v2/timer_synchronization/CMakeLists.txt index f75c22cd1a5..01af73e7ff8 100644 --- a/samples/subsys/portability/cmsis_rtos_v2/timer_synchronization/CMakeLists.txt +++ b/samples/subsys/portability/cmsis_rtos_v2/timer_synchronization/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_synchronization) diff --git a/samples/subsys/settings/CMakeLists.txt b/samples/subsys/settings/CMakeLists.txt index 565ce466682..6de6bc9244d 100644 --- a/samples/subsys/settings/CMakeLists.txt +++ b/samples/subsys/settings/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) #set(QEMU_EXTRA_FLAGS -s) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/subsys/shell/fs/CMakeLists.txt b/samples/subsys/shell/fs/CMakeLists.txt index 39ef4bb5325..a9d5d832334 100644 --- a/samples/subsys/shell/fs/CMakeLists.txt +++ b/samples/subsys/shell/fs/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fs_shell) diff --git a/samples/subsys/shell/shell_module/CMakeLists.txt b/samples/subsys/shell/shell_module/CMakeLists.txt index 043e0c232fe..50e902b84c9 100644 --- a/samples/subsys/shell/shell_module/CMakeLists.txt +++ b/samples/subsys/shell/shell_module/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(shell_module) diff --git a/samples/subsys/task_wdt/CMakeLists.txt b/samples/subsys/task_wdt/CMakeLists.txt index 72466893f9a..81130354b79 100644 --- a/samples/subsys/task_wdt/CMakeLists.txt +++ b/samples/subsys/task_wdt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(task_wdt) diff --git a/samples/subsys/testsuite/integration/CMakeLists.txt b/samples/subsys/testsuite/integration/CMakeLists.txt index ae5c07152a9..635c696edf9 100644 --- a/samples/subsys/testsuite/integration/CMakeLists.txt +++ b/samples/subsys/testsuite/integration/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(integration) diff --git a/samples/subsys/testsuite/pytest/CMakeLists.txt b/samples/subsys/testsuite/pytest/CMakeLists.txt index ed70dc5e6cf..b5ff04dd824 100644 --- a/samples/subsys/testsuite/pytest/CMakeLists.txt +++ b/samples/subsys/testsuite/pytest/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(pytest_sample) diff --git a/samples/subsys/tracing/CMakeLists.txt b/samples/subsys/tracing/CMakeLists.txt index e16689a3557..79e47acc01b 100644 --- a/samples/subsys/tracing/CMakeLists.txt +++ b/samples/subsys/tracing/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if(BOARD MATCHES "qemu_.*") list(APPEND QEMU_EXTRA_FLAGS -serial file:channel0_0) diff --git a/samples/subsys/usb/audio/headphones_microphone/CMakeLists.txt b/samples/subsys/usb/audio/headphones_microphone/CMakeLists.txt index c3af1bcbef6..42433e2b6f1 100644 --- a/samples/subsys/usb/audio/headphones_microphone/CMakeLists.txt +++ b/samples/subsys/usb/audio/headphones_microphone/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(audio) diff --git a/samples/subsys/usb/audio/headset/CMakeLists.txt b/samples/subsys/usb/audio/headset/CMakeLists.txt index c3af1bcbef6..42433e2b6f1 100644 --- a/samples/subsys/usb/audio/headset/CMakeLists.txt +++ b/samples/subsys/usb/audio/headset/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(audio) diff --git a/samples/subsys/usb/cdc_acm/CMakeLists.txt b/samples/subsys/usb/cdc_acm/CMakeLists.txt index b260cfd4928..0cba7b39068 100644 --- a/samples/subsys/usb/cdc_acm/CMakeLists.txt +++ b/samples/subsys/usb/cdc_acm/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cdc_acm) diff --git a/samples/subsys/usb/cdc_acm_composite/CMakeLists.txt b/samples/subsys/usb/cdc_acm_composite/CMakeLists.txt index b260cfd4928..0cba7b39068 100644 --- a/samples/subsys/usb/cdc_acm_composite/CMakeLists.txt +++ b/samples/subsys/usb/cdc_acm_composite/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cdc_acm) diff --git a/samples/subsys/usb/console/CMakeLists.txt b/samples/subsys/usb/console/CMakeLists.txt index f66f4008600..cf1601304ab 100644 --- a/samples/subsys/usb/console/CMakeLists.txt +++ b/samples/subsys/usb/console/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(console) diff --git a/samples/subsys/usb/dfu/CMakeLists.txt b/samples/subsys/usb/dfu/CMakeLists.txt index 0b407546bb2..2da1508d6a1 100644 --- a/samples/subsys/usb/dfu/CMakeLists.txt +++ b/samples/subsys/usb/dfu/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dfu) diff --git a/samples/subsys/usb/hid-cdc/CMakeLists.txt b/samples/subsys/usb/hid-cdc/CMakeLists.txt index 409c5ead485..8bfa12bacb4 100644 --- a/samples/subsys/usb/hid-cdc/CMakeLists.txt +++ b/samples/subsys/usb/hid-cdc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hid-cdc) diff --git a/samples/subsys/usb/hid-mouse/CMakeLists.txt b/samples/subsys/usb/hid-mouse/CMakeLists.txt index e567d1a9ed7..d384859f9fc 100644 --- a/samples/subsys/usb/hid-mouse/CMakeLists.txt +++ b/samples/subsys/usb/hid-mouse/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hid-mouse) diff --git a/samples/subsys/usb/hid/CMakeLists.txt b/samples/subsys/usb/hid/CMakeLists.txt index d358612b1e9..44c780ceb9f 100644 --- a/samples/subsys/usb/hid/CMakeLists.txt +++ b/samples/subsys/usb/hid/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hid) diff --git a/samples/subsys/usb/mass/CMakeLists.txt b/samples/subsys/usb/mass/CMakeLists.txt index 31b4e45999f..dcf6fc60af1 100644 --- a/samples/subsys/usb/mass/CMakeLists.txt +++ b/samples/subsys/usb/mass/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mass) diff --git a/samples/subsys/usb/testusb/CMakeLists.txt b/samples/subsys/usb/testusb/CMakeLists.txt index 2189b7fb0a1..2351275f036 100644 --- a/samples/subsys/usb/testusb/CMakeLists.txt +++ b/samples/subsys/usb/testusb/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(testusb) diff --git a/samples/subsys/usb/webusb/CMakeLists.txt b/samples/subsys/usb/webusb/CMakeLists.txt index 7e8503b4f59..fbac52a732e 100644 --- a/samples/subsys/usb/webusb/CMakeLists.txt +++ b/samples/subsys/usb/webusb/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(webusb) diff --git a/samples/subsys/video/capture/CMakeLists.txt b/samples/subsys/video/capture/CMakeLists.txt index 0fac2e741b4..8863a2350f4 100644 --- a/samples/subsys/video/capture/CMakeLists.txt +++ b/samples/subsys/video/capture/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(video_capture) diff --git a/samples/subsys/video/tcpserversink/CMakeLists.txt b/samples/subsys/video/tcpserversink/CMakeLists.txt index b5428e3465a..255e1de8c48 100644 --- a/samples/subsys/video/tcpserversink/CMakeLists.txt +++ b/samples/subsys/video/tcpserversink/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(video_tcpserversink) diff --git a/samples/synchronization/CMakeLists.txt b/samples/synchronization/CMakeLists.txt index 4c7efc91764..4fb7205b992 100644 --- a/samples/synchronization/CMakeLists.txt +++ b/samples/synchronization/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(synchronization) diff --git a/samples/tfm_integration/psa_crypto/CMakeLists.txt b/samples/tfm_integration/psa_crypto/CMakeLists.txt index ba90c32e43f..fd34c792405 100644 --- a/samples/tfm_integration/psa_crypto/CMakeLists.txt +++ b/samples/tfm_integration/psa_crypto/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/tfm_integration/psa_protected_storage/CMakeLists.txt b/samples/tfm_integration/psa_protected_storage/CMakeLists.txt index ec34b3ccb74..cfa1b15343a 100644 --- a/samples/tfm_integration/psa_protected_storage/CMakeLists.txt +++ b/samples/tfm_integration/psa_protected_storage/CMakeLists.txt @@ -4,8 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -# Building TFM requires Cmake 3.15. -cmake_minimum_required(VERSION 3.15) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/tfm_integration/tfm_ipc/CMakeLists.txt b/samples/tfm_integration/tfm_ipc/CMakeLists.txt index 2d5dea5d01c..d0298d8037e 100644 --- a/samples/tfm_integration/tfm_ipc/CMakeLists.txt +++ b/samples/tfm_integration/tfm_ipc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/tfm_integration/tfm_psa_test/CMakeLists.txt b/samples/tfm_integration/tfm_psa_test/CMakeLists.txt index d905103e6d0..14b743e1d78 100644 --- a/samples/tfm_integration/tfm_psa_test/CMakeLists.txt +++ b/samples/tfm_integration/tfm_psa_test/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/tfm_integration/tfm_regression_test/CMakeLists.txt b/samples/tfm_integration/tfm_regression_test/CMakeLists.txt index d9ee6606099..5f34b1c0b26 100644 --- a/samples/tfm_integration/tfm_regression_test/CMakeLists.txt +++ b/samples/tfm_integration/tfm_regression_test/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/samples/userspace/hello_world_user/CMakeLists.txt b/samples/userspace/hello_world_user/CMakeLists.txt index ca6bcc6a70c..36fd28ddaf0 100644 --- a/samples/userspace/hello_world_user/CMakeLists.txt +++ b/samples/userspace/hello_world_user/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(hello_world_user) diff --git a/samples/userspace/prod_consumer/CMakeLists.txt b/samples/userspace/prod_consumer/CMakeLists.txt index 7212e8de306..db21ff95b54 100644 --- a/samples/userspace/prod_consumer/CMakeLists.txt +++ b/samples/userspace/prod_consumer/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(shared_mem) diff --git a/samples/userspace/shared_mem/CMakeLists.txt b/samples/userspace/shared_mem/CMakeLists.txt index d23e54bb870..e514d6e48d9 100644 --- a/samples/userspace/shared_mem/CMakeLists.txt +++ b/samples/userspace/shared_mem/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(shared_mem) diff --git a/samples/userspace/syscall_perf/CMakeLists.txt b/samples/userspace/syscall_perf/CMakeLists.txt index c0b3c7c51a7..bd3bb0d73b2 100644 --- a/samples/userspace/syscall_perf/CMakeLists.txt +++ b/samples/userspace/syscall_perf/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(syscall_perf) diff --git a/subsys/testsuite/unittest.cmake b/subsys/testsuite/unittest.cmake index bb068404425..3546ec5da63 100644 --- a/subsys/testsuite/unittest.cmake +++ b/subsys/testsuite/unittest.cmake @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) cmake_policy(SET CMP0000 OLD) cmake_policy(SET CMP0002 NEW) diff --git a/tests/application_development/gen_inc_file/CMakeLists.txt b/tests/application_development/gen_inc_file/CMakeLists.txt index 81cbf36e8e6..aebb2257572 100644 --- a/tests/application_development/gen_inc_file/CMakeLists.txt +++ b/tests/application_development/gen_inc_file/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(gen_inc_file) diff --git a/tests/arch/arm/arm_hardfault_validation/CMakeLists.txt b/tests/arch/arm/arm_hardfault_validation/CMakeLists.txt index e2581896051..cdfb7e34685 100644 --- a/tests/arch/arm/arm_hardfault_validation/CMakeLists.txt +++ b/tests/arch/arm/arm_hardfault_validation/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arm_hardfault_validation) diff --git a/tests/arch/arm/arm_interrupt/CMakeLists.txt b/tests/arch/arm/arm_interrupt/CMakeLists.txt index b6de7664c81..ca7659e448a 100644 --- a/tests/arch/arm/arm_interrupt/CMakeLists.txt +++ b/tests/arch/arm/arm_interrupt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arm_interrupt) diff --git a/tests/arch/arm/arm_irq_advanced_features/CMakeLists.txt b/tests/arch/arm/arm_irq_advanced_features/CMakeLists.txt index 2acd8033ec6..8aa6ed15e73 100644 --- a/tests/arch/arm/arm_irq_advanced_features/CMakeLists.txt +++ b/tests/arch/arm/arm_irq_advanced_features/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arm_zero_latency_irqs) diff --git a/tests/arch/arm/arm_irq_vector_table/CMakeLists.txt b/tests/arch/arm/arm_irq_vector_table/CMakeLists.txt index 05454ad52e7..0526bf8f873 100644 --- a/tests/arch/arm/arm_irq_vector_table/CMakeLists.txt +++ b/tests/arch/arm/arm_irq_vector_table/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arm_irq_vector_table) diff --git a/tests/arch/arm/arm_no_multithreading/CMakeLists.txt b/tests/arch/arm/arm_no_multithreading/CMakeLists.txt index 341a9e7e104..bd109c0688e 100644 --- a/tests/arch/arm/arm_no_multithreading/CMakeLists.txt +++ b/tests/arch/arm/arm_no_multithreading/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arm_no_multithreading) diff --git a/tests/arch/arm/arm_ramfunc/CMakeLists.txt b/tests/arch/arm/arm_ramfunc/CMakeLists.txt index 2acd8033ec6..8aa6ed15e73 100644 --- a/tests/arch/arm/arm_ramfunc/CMakeLists.txt +++ b/tests/arch/arm/arm_ramfunc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arm_zero_latency_irqs) diff --git a/tests/arch/arm/arm_runtime_nmi/CMakeLists.txt b/tests/arch/arm/arm_runtime_nmi/CMakeLists.txt index 74d1841d1be..24d7d569d70 100644 --- a/tests/arch/arm/arm_runtime_nmi/CMakeLists.txt +++ b/tests/arch/arm/arm_runtime_nmi/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arm_runtime_nmi) diff --git a/tests/arch/arm/arm_sw_vector_relay/CMakeLists.txt b/tests/arch/arm/arm_sw_vector_relay/CMakeLists.txt index 63d3d10520d..138e2530bc7 100644 --- a/tests/arch/arm/arm_sw_vector_relay/CMakeLists.txt +++ b/tests/arch/arm/arm_sw_vector_relay/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arm_sw_vector_relay) diff --git a/tests/arch/arm/arm_thread_swap/CMakeLists.txt b/tests/arch/arm/arm_thread_swap/CMakeLists.txt index 152710e11f7..4db7bc55c5b 100644 --- a/tests/arch/arm/arm_thread_swap/CMakeLists.txt +++ b/tests/arch/arm/arm_thread_swap/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arm_swap) diff --git a/tests/arch/arm/arm_thread_swap_tz/CMakeLists.txt b/tests/arch/arm/arm_thread_swap_tz/CMakeLists.txt index dd169007d11..077e4845091 100644 --- a/tests/arch/arm/arm_thread_swap_tz/CMakeLists.txt +++ b/tests/arch/arm/arm_thread_swap_tz/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(NONE) diff --git a/tests/arch/arm/arm_tz_wrap_func/CMakeLists.txt b/tests/arch/arm/arm_tz_wrap_func/CMakeLists.txt index 607a2f759e7..71092f3a1d9 100644 --- a/tests/arch/arm/arm_tz_wrap_func/CMakeLists.txt +++ b/tests/arch/arm/arm_tz_wrap_func/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arm_wrap_func) diff --git a/tests/arch/arm64/arm64_psci/CMakeLists.txt b/tests/arch/arm64/arm64_psci/CMakeLists.txt index ef6532fa189..3e9b137fafa 100644 --- a/tests/arch/arm64/arm64_psci/CMakeLists.txt +++ b/tests/arch/arm64/arm64_psci/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arm_psci) diff --git a/tests/arch/x86/cpu_scrubs_regs/CMakeLists.txt b/tests/arch/x86/cpu_scrubs_regs/CMakeLists.txt index 75bf7740322..62eb147c6a3 100644 --- a/tests/arch/x86/cpu_scrubs_regs/CMakeLists.txt +++ b/tests/arch/x86/cpu_scrubs_regs/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cpu_scrubs_regs) diff --git a/tests/arch/x86/info/CMakeLists.txt b/tests/arch/x86/info/CMakeLists.txt index 3c0718d389a..7a6c14f12d3 100644 --- a/tests/arch/x86/info/CMakeLists.txt +++ b/tests/arch/x86/info/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright (c) 2019 Intel Corp. -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(x86_info) diff --git a/tests/arch/x86/nmi/CMakeLists.txt b/tests/arch/x86/nmi/CMakeLists.txt index 0b6764d5ad8..ea4a9dec903 100644 --- a/tests/arch/x86/nmi/CMakeLists.txt +++ b/tests/arch/x86/nmi/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(nmi) diff --git a/tests/arch/x86/pagetables/CMakeLists.txt b/tests/arch/x86/pagetables/CMakeLists.txt index 7aae8b29ea9..b352d3c89b7 100644 --- a/tests/arch/x86/pagetables/CMakeLists.txt +++ b/tests/arch/x86/pagetables/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(pagetables) diff --git a/tests/arch/x86/static_idt/CMakeLists.txt b/tests/arch/x86/static_idt/CMakeLists.txt index e92be99de96..6fae29f6142 100644 --- a/tests/arch/x86/static_idt/CMakeLists.txt +++ b/tests/arch/x86/static_idt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(static_idt) diff --git a/tests/arch/xtensa_asm2/CMakeLists.txt b/tests/arch/xtensa_asm2/CMakeLists.txt index 02d9f65f5b2..f46fa63acf9 100644 --- a/tests/arch/xtensa_asm2/CMakeLists.txt +++ b/tests/arch/xtensa_asm2/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(xtensa_asm2) diff --git a/tests/benchmarks/app_kernel/CMakeLists.txt b/tests/benchmarks/app_kernel/CMakeLists.txt index 3183201b82c..f7d59f31d34 100644 --- a/tests/benchmarks/app_kernel/CMakeLists.txt +++ b/tests/benchmarks/app_kernel/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(app_kernel) diff --git a/tests/benchmarks/cmsis_dsp/basicmath/CMakeLists.txt b/tests/benchmarks/cmsis_dsp/basicmath/CMakeLists.txt index cc12ee5ea92..a4dfad8884f 100644 --- a/tests/benchmarks/cmsis_dsp/basicmath/CMakeLists.txt +++ b/tests/benchmarks/cmsis_dsp/basicmath/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_basicmath_benchmark) diff --git a/tests/benchmarks/data_structure_perf/dlist_perf/CMakeLists.txt b/tests/benchmarks/data_structure_perf/dlist_perf/CMakeLists.txt index 1ebbf4df517..b6c056bc02a 100644 --- a/tests/benchmarks/data_structure_perf/dlist_perf/CMakeLists.txt +++ b/tests/benchmarks/data_structure_perf/dlist_perf/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dlist) diff --git a/tests/benchmarks/data_structure_perf/rbtree_perf/CMakeLists.txt b/tests/benchmarks/data_structure_perf/rbtree_perf/CMakeLists.txt index cdd67ffa990..96ced089f54 100644 --- a/tests/benchmarks/data_structure_perf/rbtree_perf/CMakeLists.txt +++ b/tests/benchmarks/data_structure_perf/rbtree_perf/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(rbtree) diff --git a/tests/benchmarks/footprints/CMakeLists.txt b/tests/benchmarks/footprints/CMakeLists.txt index 8073b44102d..cc20b10631b 100644 --- a/tests/benchmarks/footprints/CMakeLists.txt +++ b/tests/benchmarks/footprints/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(common_kernel_footprint) diff --git a/tests/benchmarks/latency_measure/CMakeLists.txt b/tests/benchmarks/latency_measure/CMakeLists.txt index 7ad0041d32a..9119d78050f 100644 --- a/tests/benchmarks/latency_measure/CMakeLists.txt +++ b/tests/benchmarks/latency_measure/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(latency_measure) diff --git a/tests/benchmarks/mbedtls/CMakeLists.txt b/tests/benchmarks/mbedtls/CMakeLists.txt index 97d00ec1482..d6515ea5c9a 100644 --- a/tests/benchmarks/mbedtls/CMakeLists.txt +++ b/tests/benchmarks/mbedtls/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mbedtls_benchmark) diff --git a/tests/benchmarks/sched/CMakeLists.txt b/tests/benchmarks/sched/CMakeLists.txt index ea78de1ae43..dd337a73306 100644 --- a/tests/benchmarks/sched/CMakeLists.txt +++ b/tests/benchmarks/sched/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sched_bench) diff --git a/tests/benchmarks/sys_kernel/CMakeLists.txt b/tests/benchmarks/sys_kernel/CMakeLists.txt index 093204a5ba6..3158bcf23bf 100644 --- a/tests/benchmarks/sys_kernel/CMakeLists.txt +++ b/tests/benchmarks/sys_kernel/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sys_kernel) diff --git a/tests/bluetooth/adv/CMakeLists.txt b/tests/bluetooth/adv/CMakeLists.txt index cc3ec044a3e..b1737b8b5ba 100644 --- a/tests/bluetooth/adv/CMakeLists.txt +++ b/tests/bluetooth/adv/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bluetooth_adv) diff --git a/tests/bluetooth/at/CMakeLists.txt b/tests/bluetooth/at/CMakeLists.txt index 5af04e60e4a..58b9e512a78 100644 --- a/tests/bluetooth/at/CMakeLists.txt +++ b/tests/bluetooth/at/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(at) diff --git a/tests/bluetooth/bluetooth/CMakeLists.txt b/tests/bluetooth/bluetooth/CMakeLists.txt index b1e5ce6a96f..381fce8d757 100644 --- a/tests/bluetooth/bluetooth/CMakeLists.txt +++ b/tests/bluetooth/bluetooth/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) set(NO_QEMU_SERIAL_BT_SERVER 1) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/tests/bluetooth/bsim_bt/bsim_test_advx/CMakeLists.txt b/tests/bluetooth/bsim_bt/bsim_test_advx/CMakeLists.txt index 0941129ea1e..7fe5ab1601d 100644 --- a/tests/bluetooth/bsim_bt/bsim_test_advx/CMakeLists.txt +++ b/tests/bluetooth/bsim_bt/bsim_test_advx/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if (NOT DEFINED ENV{BSIM_COMPONENTS_PATH}) message(FATAL_ERROR "This test requires the BabbleSim simulator. Please set\ diff --git a/tests/bluetooth/bsim_bt/bsim_test_app/CMakeLists.txt b/tests/bluetooth/bsim_bt/bsim_test_app/CMakeLists.txt index 114caac6d06..3bab6789565 100644 --- a/tests/bluetooth/bsim_bt/bsim_test_app/CMakeLists.txt +++ b/tests/bluetooth/bsim_bt/bsim_test_app/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if (NOT DEFINED ENV{BSIM_COMPONENTS_PATH}) message(FATAL_ERROR "This test requires the BabbleSim simulator. Please set\ diff --git a/tests/bluetooth/bsim_bt/bsim_test_audio/CMakeLists.txt b/tests/bluetooth/bsim_bt/bsim_test_audio/CMakeLists.txt index af3249d9b5c..28dd2e57736 100644 --- a/tests/bluetooth/bsim_bt/bsim_test_audio/CMakeLists.txt +++ b/tests/bluetooth/bsim_bt/bsim_test_audio/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if (NOT DEFINED ENV{BSIM_COMPONENTS_PATH}) message(FATAL_ERROR "This test requires the BabbleSim simulator. Please set\ diff --git a/tests/bluetooth/bsim_bt/bsim_test_iso/CMakeLists.txt b/tests/bluetooth/bsim_bt/bsim_test_iso/CMakeLists.txt index d1c9f3e261f..684b07d7724 100644 --- a/tests/bluetooth/bsim_bt/bsim_test_iso/CMakeLists.txt +++ b/tests/bluetooth/bsim_bt/bsim_test_iso/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if (NOT DEFINED ENV{BSIM_COMPONENTS_PATH}) message(FATAL_ERROR "This test requires the BabbleSim simulator. Please set\ diff --git a/tests/bluetooth/bsim_bt/bsim_test_mesh/CMakeLists.txt b/tests/bluetooth/bsim_bt/bsim_test_mesh/CMakeLists.txt index 970c7a0a113..e87e1ff3ad7 100644 --- a/tests/bluetooth/bsim_bt/bsim_test_mesh/CMakeLists.txt +++ b/tests/bluetooth/bsim_bt/bsim_test_mesh/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if (NOT DEFINED ENV{BSIM_COMPONENTS_PATH}) message(FATAL_ERROR "This test requires the BabbleSim simulator. Please set\ diff --git a/tests/bluetooth/bsim_bt/bsim_test_multiple/CMakeLists.txt b/tests/bluetooth/bsim_bt/bsim_test_multiple/CMakeLists.txt index 85f3344b8d3..8f2920cb7dc 100644 --- a/tests/bluetooth/bsim_bt/bsim_test_multiple/CMakeLists.txt +++ b/tests/bluetooth/bsim_bt/bsim_test_multiple/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if (NOT DEFINED ENV{BSIM_COMPONENTS_PATH}) message(FATAL_ERROR "This test requires the BabbleSim simulator. Please set \ diff --git a/tests/bluetooth/bsim_bt/edtt_ble_test_app/gatt_test_app/CMakeLists.txt b/tests/bluetooth/bsim_bt/edtt_ble_test_app/gatt_test_app/CMakeLists.txt index c4ca333c616..555b47afed9 100644 --- a/tests/bluetooth/bsim_bt/edtt_ble_test_app/gatt_test_app/CMakeLists.txt +++ b/tests/bluetooth/bsim_bt/edtt_ble_test_app/gatt_test_app/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright (c) 2019 Oticon A/S -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if (NOT DEFINED ENV{BSIM_COMPONENTS_PATH}) message(FATAL_ERROR "This test requires the BabbleSim simulator. Please set\ diff --git a/tests/bluetooth/bsim_bt/edtt_ble_test_app/hci_test_app/CMakeLists.txt b/tests/bluetooth/bsim_bt/edtt_ble_test_app/hci_test_app/CMakeLists.txt index 1be0866b81a..4e160cc85c6 100644 --- a/tests/bluetooth/bsim_bt/edtt_ble_test_app/hci_test_app/CMakeLists.txt +++ b/tests/bluetooth/bsim_bt/edtt_ble_test_app/hci_test_app/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright (c) 2019 Oticon A/S -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if (NOT DEFINED ENV{BSIM_COMPONENTS_PATH}) message(FATAL_ERROR "This test requires the BabbleSim simulator. Please set\ diff --git a/tests/bluetooth/ctrl_sw_privacy/CMakeLists.txt b/tests/bluetooth/ctrl_sw_privacy/CMakeLists.txt index 29fc27f3561..c7005acc3ff 100644 --- a/tests/bluetooth/ctrl_sw_privacy/CMakeLists.txt +++ b/tests/bluetooth/ctrl_sw_privacy/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include_directories("./src") find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/tests/bluetooth/ctrl_sw_privacy_unit/CMakeLists.txt b/tests/bluetooth/ctrl_sw_privacy_unit/CMakeLists.txt index c76dfaa8e39..54cba6078f5 100644 --- a/tests/bluetooth/ctrl_sw_privacy_unit/CMakeLists.txt +++ b/tests/bluetooth/ctrl_sw_privacy_unit/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include_directories("./src") find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/tests/bluetooth/ctrl_user_ext/CMakeLists.txt b/tests/bluetooth/ctrl_user_ext/CMakeLists.txt index c54e20231f1..f85bd5e8098 100644 --- a/tests/bluetooth/ctrl_user_ext/CMakeLists.txt +++ b/tests/bluetooth/ctrl_user_ext/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include_directories("./src") find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) diff --git a/tests/bluetooth/df/connectionless_cte_chains/CMakeLists.txt b/tests/bluetooth/df/connectionless_cte_chains/CMakeLists.txt index 1137dc530c2..1eed35ac7d2 100644 --- a/tests/bluetooth/df/connectionless_cte_chains/CMakeLists.txt +++ b/tests/bluetooth/df/connectionless_cte_chains/CMakeLists.txt @@ -3,7 +3,7 @@ # # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bluetooth_df_connectionless_cte_tx) diff --git a/tests/bluetooth/df/connectionless_cte_rx/CMakeLists.txt b/tests/bluetooth/df/connectionless_cte_rx/CMakeLists.txt index 344016271d9..4920c928f68 100644 --- a/tests/bluetooth/df/connectionless_cte_rx/CMakeLists.txt +++ b/tests/bluetooth/df/connectionless_cte_rx/CMakeLists.txt @@ -3,7 +3,7 @@ # # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bluetooth_df_connectionless_cte_tx) diff --git a/tests/bluetooth/df/connectionless_cte_tx/CMakeLists.txt b/tests/bluetooth/df/connectionless_cte_tx/CMakeLists.txt index 79dec5f1904..ec6c79bbbef 100644 --- a/tests/bluetooth/df/connectionless_cte_tx/CMakeLists.txt +++ b/tests/bluetooth/df/connectionless_cte_tx/CMakeLists.txt @@ -3,7 +3,7 @@ # # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bluetooth_df_connectionless_cte_tx) diff --git a/tests/bluetooth/gatt/CMakeLists.txt b/tests/bluetooth/gatt/CMakeLists.txt index 5339d1dd916..5ce6129ca35 100644 --- a/tests/bluetooth/gatt/CMakeLists.txt +++ b/tests/bluetooth/gatt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bluetooth_gatt) diff --git a/tests/bluetooth/hci_codecs_info/CMakeLists.txt b/tests/bluetooth/hci_codecs_info/CMakeLists.txt index b858a4bb516..45c9e8eca83 100644 --- a/tests/bluetooth/hci_codecs_info/CMakeLists.txt +++ b/tests/bluetooth/hci_codecs_info/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bluetooth_hci_codecs_info) diff --git a/tests/bluetooth/hci_prop_evt/CMakeLists.txt b/tests/bluetooth/hci_prop_evt/CMakeLists.txt index 8c0335bb3cf..59cffc35034 100644 --- a/tests/bluetooth/hci_prop_evt/CMakeLists.txt +++ b/tests/bluetooth/hci_prop_evt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hci_prop_evt) diff --git a/tests/bluetooth/init/CMakeLists.txt b/tests/bluetooth/init/CMakeLists.txt index e80b3372256..a5f4d8f287f 100644 --- a/tests/bluetooth/init/CMakeLists.txt +++ b/tests/bluetooth/init/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bluetooth_init) diff --git a/tests/bluetooth/l2cap/CMakeLists.txt b/tests/bluetooth/l2cap/CMakeLists.txt index 5339d1dd916..5ce6129ca35 100644 --- a/tests/bluetooth/l2cap/CMakeLists.txt +++ b/tests/bluetooth/l2cap/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bluetooth_gatt) diff --git a/tests/bluetooth/ll_settings/CMakeLists.txt b/tests/bluetooth/ll_settings/CMakeLists.txt index 7db718fe28a..299d880b211 100644 --- a/tests/bluetooth/ll_settings/CMakeLists.txt +++ b/tests/bluetooth/ll_settings/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bluetooth_ll_settings) diff --git a/tests/bluetooth/mesh/CMakeLists.txt b/tests/bluetooth/mesh/CMakeLists.txt index 485737ec64a..6a55cc7af32 100644 --- a/tests/bluetooth/mesh/CMakeLists.txt +++ b/tests/bluetooth/mesh/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mesh) diff --git a/tests/bluetooth/mesh_shell/CMakeLists.txt b/tests/bluetooth/mesh_shell/CMakeLists.txt index 62116ece211..0f51c3d057d 100644 --- a/tests/bluetooth/mesh_shell/CMakeLists.txt +++ b/tests/bluetooth/mesh_shell/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mesh_shell) diff --git a/tests/bluetooth/shell/CMakeLists.txt b/tests/bluetooth/shell/CMakeLists.txt index d98618e38c3..58810bf8e88 100644 --- a/tests/bluetooth/shell/CMakeLists.txt +++ b/tests/bluetooth/shell/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bluetooth_shell) diff --git a/tests/bluetooth/tester/CMakeLists.txt b/tests/bluetooth/tester/CMakeLists.txt index c0e47dc24a1..fc26d7f2d48 100644 --- a/tests/bluetooth/tester/CMakeLists.txt +++ b/tests/bluetooth/tester/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) LIST(APPEND QEMU_EXTRA_FLAGS -serial unix:/tmp/bt-stack-tester) diff --git a/tests/bluetooth/uuid/CMakeLists.txt b/tests/bluetooth/uuid/CMakeLists.txt index 5339d1dd916..5ce6129ca35 100644 --- a/tests/bluetooth/uuid/CMakeLists.txt +++ b/tests/bluetooth/uuid/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bluetooth_gatt) diff --git a/tests/boards/altera_max10/i2c_master/CMakeLists.txt b/tests/boards/altera_max10/i2c_master/CMakeLists.txt index 07a4dc8ea90..351d582ea40 100644 --- a/tests/boards/altera_max10/i2c_master/CMakeLists.txt +++ b/tests/boards/altera_max10/i2c_master/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(i2c_master) diff --git a/tests/boards/altera_max10/msgdma/CMakeLists.txt b/tests/boards/altera_max10/msgdma/CMakeLists.txt index af63ab6873d..96f0d8944ad 100644 --- a/tests/boards/altera_max10/msgdma/CMakeLists.txt +++ b/tests/boards/altera_max10/msgdma/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(msgdma) diff --git a/tests/boards/altera_max10/qspi/CMakeLists.txt b/tests/boards/altera_max10/qspi/CMakeLists.txt index 42dce32e7a4..24002a414be 100644 --- a/tests/boards/altera_max10/qspi/CMakeLists.txt +++ b/tests/boards/altera_max10/qspi/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(qspi) diff --git a/tests/boards/altera_max10/sysid/CMakeLists.txt b/tests/boards/altera_max10/sysid/CMakeLists.txt index c50c921fd17..3c3abcb8d48 100644 --- a/tests/boards/altera_max10/sysid/CMakeLists.txt +++ b/tests/boards/altera_max10/sysid/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sysid) diff --git a/tests/boards/espressif_esp32/cache_coex/CMakeLists.txt b/tests/boards/espressif_esp32/cache_coex/CMakeLists.txt index ae40292b51a..d7e05554a5e 100644 --- a/tests/boards/espressif_esp32/cache_coex/CMakeLists.txt +++ b/tests/boards/espressif_esp32/cache_coex/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cache_coex_test) diff --git a/tests/boards/intel_s1000_crb/cache/CMakeLists.txt b/tests/boards/intel_s1000_crb/cache/CMakeLists.txt index 88642049bf2..e14b80b09a6 100644 --- a/tests/boards/intel_s1000_crb/cache/CMakeLists.txt +++ b/tests/boards/intel_s1000_crb/cache/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 set(BOARD intel_s1000_crb) -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(intel_s1000_crb) diff --git a/tests/boards/intel_s1000_crb/main/CMakeLists.txt b/tests/boards/intel_s1000_crb/main/CMakeLists.txt index 612f43d5ff1..23d8f948a43 100644 --- a/tests/boards/intel_s1000_crb/main/CMakeLists.txt +++ b/tests/boards/intel_s1000_crb/main/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(intel_s1000_crb) diff --git a/tests/boards/mec15xxevb_assy6853/i2c_api/CMakeLists.txt b/tests/boards/mec15xxevb_assy6853/i2c_api/CMakeLists.txt index db76b6e98e0..65eaa7adcb1 100644 --- a/tests/boards/mec15xxevb_assy6853/i2c_api/CMakeLists.txt +++ b/tests/boards/mec15xxevb_assy6853/i2c_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(i2c_api) diff --git a/tests/boards/mec15xxevb_assy6853/qspi/CMakeLists.txt b/tests/boards/mec15xxevb_assy6853/qspi/CMakeLists.txt index 8d6fdc4d934..5c672271901 100644 --- a/tests/boards/mec15xxevb_assy6853/qspi/CMakeLists.txt +++ b/tests/boards/mec15xxevb_assy6853/qspi/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(qspi) diff --git a/tests/boards/native_posix/cpu_wait/CMakeLists.txt b/tests/boards/native_posix/cpu_wait/CMakeLists.txt index bcaa9bc56ea..3af90e92c4a 100644 --- a/tests/boards/native_posix/cpu_wait/CMakeLists.txt +++ b/tests/boards/native_posix/cpu_wait/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cpu_wait) diff --git a/tests/boards/native_posix/native_tasks/CMakeLists.txt b/tests/boards/native_posix/native_tasks/CMakeLists.txt index fa6b69dc97f..ff172cb626d 100644 --- a/tests/boards/native_posix/native_tasks/CMakeLists.txt +++ b/tests/boards/native_posix/native_tasks/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(native_tasks) diff --git a/tests/boards/native_posix/rtc/CMakeLists.txt b/tests/boards/native_posix/rtc/CMakeLists.txt index 1d4ca0abafc..d93026155e5 100644 --- a/tests/boards/native_posix/rtc/CMakeLists.txt +++ b/tests/boards/native_posix/rtc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(rtc) diff --git a/tests/crypto/mbedtls/CMakeLists.txt b/tests/crypto/mbedtls/CMakeLists.txt index 18c614b7075..1bbd6b6ddd7 100644 --- a/tests/crypto/mbedtls/CMakeLists.txt +++ b/tests/crypto/mbedtls/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mbedtls) diff --git a/tests/crypto/rand32/CMakeLists.txt b/tests/crypto/rand32/CMakeLists.txt index 97d88514150..645735d4f16 100644 --- a/tests/crypto/rand32/CMakeLists.txt +++ b/tests/crypto/rand32/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(rand32) diff --git a/tests/crypto/tinycrypt/CMakeLists.txt b/tests/crypto/tinycrypt/CMakeLists.txt index 52424a5f727..77cc0e5f85c 100644 --- a/tests/crypto/tinycrypt/CMakeLists.txt +++ b/tests/crypto/tinycrypt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tinycrypt) diff --git a/tests/crypto/tinycrypt_hmac_prng/CMakeLists.txt b/tests/crypto/tinycrypt_hmac_prng/CMakeLists.txt index ec5c91f27f8..9e02bd1d2c6 100644 --- a/tests/crypto/tinycrypt_hmac_prng/CMakeLists.txt +++ b/tests/crypto/tinycrypt_hmac_prng/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tinycrypt_hmac_prng) diff --git a/tests/drivers/adc/adc_api/CMakeLists.txt b/tests/drivers/adc/adc_api/CMakeLists.txt index f749f72f411..40bbe0e74d9 100644 --- a/tests/drivers/adc/adc_api/CMakeLists.txt +++ b/tests/drivers/adc/adc_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(adc_api) diff --git a/tests/drivers/adc/adc_dma/CMakeLists.txt b/tests/drivers/adc/adc_dma/CMakeLists.txt index 1a6c349ded6..f71af7b495f 100644 --- a/tests/drivers/adc/adc_dma/CMakeLists.txt +++ b/tests/drivers/adc/adc_dma/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(adc_dma) diff --git a/tests/drivers/adc/adc_emul/CMakeLists.txt b/tests/drivers/adc/adc_emul/CMakeLists.txt index 975b77d8fe1..6f9eba2f21e 100644 --- a/tests/drivers/adc/adc_emul/CMakeLists.txt +++ b/tests/drivers/adc/adc_emul/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright 2021 Google LLC # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(adc_emul) diff --git a/tests/drivers/bbram/CMakeLists.txt b/tests/drivers/bbram/CMakeLists.txt index 90dc6efaca8..d9ab8b823f2 100644 --- a/tests/drivers/bbram/CMakeLists.txt +++ b/tests/drivers/bbram/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright 2021 Google LLC # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bbram) diff --git a/tests/drivers/build_all/adc/CMakeLists.txt b/tests/drivers/build_all/adc/CMakeLists.txt index 2820f689345..518596a02f7 100644 --- a/tests/drivers/build_all/adc/CMakeLists.txt +++ b/tests/drivers/build_all/adc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(build_all) diff --git a/tests/drivers/build_all/counter/CMakeLists.txt b/tests/drivers/build_all/counter/CMakeLists.txt index 2820f689345..518596a02f7 100644 --- a/tests/drivers/build_all/counter/CMakeLists.txt +++ b/tests/drivers/build_all/counter/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(build_all) diff --git a/tests/drivers/build_all/dac/CMakeLists.txt b/tests/drivers/build_all/dac/CMakeLists.txt index 2820f689345..518596a02f7 100644 --- a/tests/drivers/build_all/dac/CMakeLists.txt +++ b/tests/drivers/build_all/dac/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(build_all) diff --git a/tests/drivers/build_all/eeprom/CMakeLists.txt b/tests/drivers/build_all/eeprom/CMakeLists.txt index 2820f689345..518596a02f7 100644 --- a/tests/drivers/build_all/eeprom/CMakeLists.txt +++ b/tests/drivers/build_all/eeprom/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(build_all) diff --git a/tests/drivers/build_all/ethernet/CMakeLists.txt b/tests/drivers/build_all/ethernet/CMakeLists.txt index 2820f689345..518596a02f7 100644 --- a/tests/drivers/build_all/ethernet/CMakeLists.txt +++ b/tests/drivers/build_all/ethernet/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(build_all) diff --git a/tests/drivers/build_all/gpio/CMakeLists.txt b/tests/drivers/build_all/gpio/CMakeLists.txt index 2820f689345..518596a02f7 100644 --- a/tests/drivers/build_all/gpio/CMakeLists.txt +++ b/tests/drivers/build_all/gpio/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(build_all) diff --git a/tests/drivers/build_all/led/CMakeLists.txt b/tests/drivers/build_all/led/CMakeLists.txt index 2820f689345..518596a02f7 100644 --- a/tests/drivers/build_all/led/CMakeLists.txt +++ b/tests/drivers/build_all/led/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(build_all) diff --git a/tests/drivers/build_all/modem/CMakeLists.txt b/tests/drivers/build_all/modem/CMakeLists.txt index 2820f689345..518596a02f7 100644 --- a/tests/drivers/build_all/modem/CMakeLists.txt +++ b/tests/drivers/build_all/modem/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(build_all) diff --git a/tests/drivers/build_all/pwm/CMakeLists.txt b/tests/drivers/build_all/pwm/CMakeLists.txt index 2820f689345..518596a02f7 100644 --- a/tests/drivers/build_all/pwm/CMakeLists.txt +++ b/tests/drivers/build_all/pwm/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(build_all) diff --git a/tests/drivers/build_all/sensor/CMakeLists.txt b/tests/drivers/build_all/sensor/CMakeLists.txt index 2820f689345..518596a02f7 100644 --- a/tests/drivers/build_all/sensor/CMakeLists.txt +++ b/tests/drivers/build_all/sensor/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(build_all) diff --git a/tests/drivers/can/api/CMakeLists.txt b/tests/drivers/can/api/CMakeLists.txt index ae5c07152a9..635c696edf9 100644 --- a/tests/drivers/can/api/CMakeLists.txt +++ b/tests/drivers/can/api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(integration) diff --git a/tests/drivers/can/canfd/CMakeLists.txt b/tests/drivers/can/canfd/CMakeLists.txt index ae5c07152a9..635c696edf9 100644 --- a/tests/drivers/can/canfd/CMakeLists.txt +++ b/tests/drivers/can/canfd/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(integration) diff --git a/tests/drivers/can/stm32/CMakeLists.txt b/tests/drivers/can/stm32/CMakeLists.txt index ae5c07152a9..635c696edf9 100644 --- a/tests/drivers/can/stm32/CMakeLists.txt +++ b/tests/drivers/can/stm32/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(integration) diff --git a/tests/drivers/can/timing/CMakeLists.txt b/tests/drivers/can/timing/CMakeLists.txt index b2274acd78f..052e0de57a2 100644 --- a/tests/drivers/can/timing/CMakeLists.txt +++ b/tests/drivers/can/timing/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(can_timing) diff --git a/tests/drivers/clock_control/clock_control_api/CMakeLists.txt b/tests/drivers/clock_control/clock_control_api/CMakeLists.txt index 70d23ca2940..e4eba69304e 100644 --- a/tests/drivers/clock_control/clock_control_api/CMakeLists.txt +++ b/tests/drivers/clock_control/clock_control_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(clock_control_api) diff --git a/tests/drivers/clock_control/nrf_clock_calibration/CMakeLists.txt b/tests/drivers/clock_control/nrf_clock_calibration/CMakeLists.txt index 290c2337f88..789c84e92b0 100644 --- a/tests/drivers/clock_control/nrf_clock_calibration/CMakeLists.txt +++ b/tests/drivers/clock_control/nrf_clock_calibration/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(nrf_clock_calibration) diff --git a/tests/drivers/clock_control/nrf_lf_clock_start/CMakeLists.txt b/tests/drivers/clock_control/nrf_lf_clock_start/CMakeLists.txt index d55334e31d1..d6f5000d97c 100644 --- a/tests/drivers/clock_control/nrf_lf_clock_start/CMakeLists.txt +++ b/tests/drivers/clock_control/nrf_lf_clock_start/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(nrf_lf_clock_start) diff --git a/tests/drivers/clock_control/nrf_onoff_and_bt/CMakeLists.txt b/tests/drivers/clock_control/nrf_onoff_and_bt/CMakeLists.txt index 7f9342061ae..58a688a3c6a 100644 --- a/tests/drivers/clock_control/nrf_onoff_and_bt/CMakeLists.txt +++ b/tests/drivers/clock_control/nrf_onoff_and_bt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(nrf_onoff_and_bt) diff --git a/tests/drivers/clock_control/onoff/CMakeLists.txt b/tests/drivers/clock_control/onoff/CMakeLists.txt index 7ac5982e37d..d0020053ea8 100644 --- a/tests/drivers/clock_control/onoff/CMakeLists.txt +++ b/tests/drivers/clock_control/onoff/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(NONE) diff --git a/tests/drivers/console/CMakeLists.txt b/tests/drivers/console/CMakeLists.txt index 92d333dcf63..f33d2c4cbb3 100644 --- a/tests/drivers/console/CMakeLists.txt +++ b/tests/drivers/console/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(console) diff --git a/tests/drivers/counter/counter_basic_api/CMakeLists.txt b/tests/drivers/counter/counter_basic_api/CMakeLists.txt index 35df5686e85..00a6a90b7a9 100644 --- a/tests/drivers/counter/counter_basic_api/CMakeLists.txt +++ b/tests/drivers/counter/counter_basic_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(counter_basic_api) diff --git a/tests/drivers/counter/counter_cmos/CMakeLists.txt b/tests/drivers/counter/counter_cmos/CMakeLists.txt index 18dc9565f39..345476a0727 100644 --- a/tests/drivers/counter/counter_cmos/CMakeLists.txt +++ b/tests/drivers/counter/counter_cmos/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) 2019 Intel Corp. # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(counter_cmos) diff --git a/tests/drivers/counter/counter_nrf_rtc/fixed_top/CMakeLists.txt b/tests/drivers/counter/counter_nrf_rtc/fixed_top/CMakeLists.txt index 74e0a55e0d5..4ff1e3d7d2b 100644 --- a/tests/drivers/counter/counter_nrf_rtc/fixed_top/CMakeLists.txt +++ b/tests/drivers/counter/counter_nrf_rtc/fixed_top/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fixed_top) diff --git a/tests/drivers/counter/maxim_ds3231_api/CMakeLists.txt b/tests/drivers/counter/maxim_ds3231_api/CMakeLists.txt index 0854826f795..305a73375ae 100644 --- a/tests/drivers/counter/maxim_ds3231_api/CMakeLists.txt +++ b/tests/drivers/counter/maxim_ds3231_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(maxim_ds3231_api) diff --git a/tests/drivers/dac/dac_api/CMakeLists.txt b/tests/drivers/dac/dac_api/CMakeLists.txt index edeed68930d..81985ee5631 100644 --- a/tests/drivers/dac/dac_api/CMakeLists.txt +++ b/tests/drivers/dac/dac_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dac_api) diff --git a/tests/drivers/dac/dac_loopback/CMakeLists.txt b/tests/drivers/dac/dac_loopback/CMakeLists.txt index d67ebecb7b1..eb9d2ee4bc4 100644 --- a/tests/drivers/dac/dac_loopback/CMakeLists.txt +++ b/tests/drivers/dac/dac_loopback/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dac_loopback) diff --git a/tests/drivers/dma/chan_blen_transfer/CMakeLists.txt b/tests/drivers/dma/chan_blen_transfer/CMakeLists.txt index 755769a91ab..e1bba7f3f65 100644 --- a/tests/drivers/dma/chan_blen_transfer/CMakeLists.txt +++ b/tests/drivers/dma/chan_blen_transfer/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(chan_blen_transfer) diff --git a/tests/drivers/dma/chan_link_transfer/CMakeLists.txt b/tests/drivers/dma/chan_link_transfer/CMakeLists.txt index 1102b3f9ce1..668a030ed57 100644 --- a/tests/drivers/dma/chan_link_transfer/CMakeLists.txt +++ b/tests/drivers/dma/chan_link_transfer/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(chan_link_transfer) diff --git a/tests/drivers/dma/loop_transfer/CMakeLists.txt b/tests/drivers/dma/loop_transfer/CMakeLists.txt index 00113014409..028e0e5d60b 100644 --- a/tests/drivers/dma/loop_transfer/CMakeLists.txt +++ b/tests/drivers/dma/loop_transfer/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(loop_transfer) diff --git a/tests/drivers/eeprom/CMakeLists.txt b/tests/drivers/eeprom/CMakeLists.txt index b95b97bf4bb..0311e5ecc06 100644 --- a/tests/drivers/eeprom/CMakeLists.txt +++ b/tests/drivers/eeprom/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(eeprom_api) diff --git a/tests/drivers/entropy/api/CMakeLists.txt b/tests/drivers/entropy/api/CMakeLists.txt index 70a214017b3..78c2643ff75 100644 --- a/tests/drivers/entropy/api/CMakeLists.txt +++ b/tests/drivers/entropy/api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(entropy_api) diff --git a/tests/drivers/flash/CMakeLists.txt b/tests/drivers/flash/CMakeLists.txt index 333b787291a..370af0b3942 100644 --- a/tests/drivers/flash/CMakeLists.txt +++ b/tests/drivers/flash/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(nrf_qspi_nor) diff --git a/tests/drivers/flash_simulator/CMakeLists.txt b/tests/drivers/flash_simulator/CMakeLists.txt index ebf169dd2db..d3063287742 100644 --- a/tests/drivers/flash_simulator/CMakeLists.txt +++ b/tests/drivers/flash_simulator/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(flash_simulator) diff --git a/tests/drivers/gpio/gpio_api_1pin/CMakeLists.txt b/tests/drivers/gpio/gpio_api_1pin/CMakeLists.txt index f2926c66c92..1894c1d5ae5 100644 --- a/tests/drivers/gpio/gpio_api_1pin/CMakeLists.txt +++ b/tests/drivers/gpio/gpio_api_1pin/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(gpio_basic_api) diff --git a/tests/drivers/gpio/gpio_basic_api/CMakeLists.txt b/tests/drivers/gpio/gpio_basic_api/CMakeLists.txt index 5d2664e2335..2c6347bd1e7 100644 --- a/tests/drivers/gpio/gpio_basic_api/CMakeLists.txt +++ b/tests/drivers/gpio/gpio_basic_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(gpio_basic_api) diff --git a/tests/drivers/hwinfo/api/CMakeLists.txt b/tests/drivers/hwinfo/api/CMakeLists.txt index ae5c07152a9..635c696edf9 100644 --- a/tests/drivers/hwinfo/api/CMakeLists.txt +++ b/tests/drivers/hwinfo/api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(integration) diff --git a/tests/drivers/i2c/i2c_api/CMakeLists.txt b/tests/drivers/i2c/i2c_api/CMakeLists.txt index db76b6e98e0..65eaa7adcb1 100644 --- a/tests/drivers/i2c/i2c_api/CMakeLists.txt +++ b/tests/drivers/i2c/i2c_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(i2c_api) diff --git a/tests/drivers/i2c/i2c_slave_api/CMakeLists.txt b/tests/drivers/i2c/i2c_slave_api/CMakeLists.txt index f18dc34ea24..170f7999e1c 100644 --- a/tests/drivers/i2c/i2c_slave_api/CMakeLists.txt +++ b/tests/drivers/i2c/i2c_slave_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(i2c_slave_api) diff --git a/tests/drivers/i2c/i2c_tca9546a/CMakeLists.txt b/tests/drivers/i2c/i2c_tca9546a/CMakeLists.txt index 37afc0db89b..695bfe2eaf0 100644 --- a/tests/drivers/i2c/i2c_tca9546a/CMakeLists.txt +++ b/tests/drivers/i2c/i2c_tca9546a/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(i2c_tca9546a) diff --git a/tests/drivers/i2s/i2s_api/CMakeLists.txt b/tests/drivers/i2s/i2s_api/CMakeLists.txt index 6634c7bf5f8..3b3b025b4cf 100644 --- a/tests/drivers/i2s/i2s_api/CMakeLists.txt +++ b/tests/drivers/i2s/i2s_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(i2s_api) diff --git a/tests/drivers/i2s/i2s_speed/CMakeLists.txt b/tests/drivers/i2s/i2s_speed/CMakeLists.txt index 4afa3e5aacc..10e82dc6644 100644 --- a/tests/drivers/i2s/i2s_speed/CMakeLists.txt +++ b/tests/drivers/i2s/i2s_speed/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(i2s_speed) diff --git a/tests/drivers/ipm/CMakeLists.txt b/tests/drivers/ipm/CMakeLists.txt index 08219d0a5db..8f87d724c9e 100644 --- a/tests/drivers/ipm/CMakeLists.txt +++ b/tests/drivers/ipm/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ipm) diff --git a/tests/drivers/kscan/kscan_api/CMakeLists.txt b/tests/drivers/kscan/kscan_api/CMakeLists.txt index ac9b078d456..385203698cf 100644 --- a/tests/drivers/kscan/kscan_api/CMakeLists.txt +++ b/tests/drivers/kscan/kscan_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(kscan_api) diff --git a/tests/drivers/led/led_api/CMakeLists.txt b/tests/drivers/led/led_api/CMakeLists.txt index 94eaf5804c8..448c233f07b 100644 --- a/tests/drivers/led/led_api/CMakeLists.txt +++ b/tests/drivers/led/led_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(led_api) diff --git a/tests/drivers/memc/stm32_sdram/CMakeLists.txt b/tests/drivers/memc/stm32_sdram/CMakeLists.txt index ae5c07152a9..635c696edf9 100644 --- a/tests/drivers/memc/stm32_sdram/CMakeLists.txt +++ b/tests/drivers/memc/stm32_sdram/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(integration) diff --git a/tests/drivers/pwm/pwm_api/CMakeLists.txt b/tests/drivers/pwm/pwm_api/CMakeLists.txt index 1c924c1dcb9..64d14f7fdcc 100644 --- a/tests/drivers/pwm/pwm_api/CMakeLists.txt +++ b/tests/drivers/pwm/pwm_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(pwm_api) diff --git a/tests/drivers/pwm/pwm_loopback/CMakeLists.txt b/tests/drivers/pwm/pwm_loopback/CMakeLists.txt index 7b20a1fa828..6cde57161af 100644 --- a/tests/drivers/pwm/pwm_loopback/CMakeLists.txt +++ b/tests/drivers/pwm/pwm_loopback/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(pwm_loopback) diff --git a/tests/drivers/regulator/fixed/CMakeLists.txt b/tests/drivers/regulator/fixed/CMakeLists.txt index b75d4dd4450..48e6b445338 100644 --- a/tests/drivers/regulator/fixed/CMakeLists.txt +++ b/tests/drivers/regulator/fixed/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright 2020 Peter Bigot Consulting, LLC # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tests_drivers_regulator_fixed) diff --git a/tests/drivers/sensor/accel/CMakeLists.txt b/tests/drivers/sensor/accel/CMakeLists.txt index fbb15d2babe..4b3d245c53f 100644 --- a/tests/drivers/sensor/accel/CMakeLists.txt +++ b/tests/drivers/sensor/accel/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(device) diff --git a/tests/drivers/sensor/generic/CMakeLists.txt b/tests/drivers/sensor/generic/CMakeLists.txt index fbb15d2babe..4b3d245c53f 100644 --- a/tests/drivers/sensor/generic/CMakeLists.txt +++ b/tests/drivers/sensor/generic/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(device) diff --git a/tests/drivers/sensor/sbs_gauge/CMakeLists.txt b/tests/drivers/sensor/sbs_gauge/CMakeLists.txt index fbb15d2babe..4b3d245c53f 100644 --- a/tests/drivers/sensor/sbs_gauge/CMakeLists.txt +++ b/tests/drivers/sensor/sbs_gauge/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(device) diff --git a/tests/drivers/spi/spi_loopback/CMakeLists.txt b/tests/drivers/spi/spi_loopback/CMakeLists.txt index f20a8a2cb9d..23426907874 100644 --- a/tests/drivers/spi/spi_loopback/CMakeLists.txt +++ b/tests/drivers/spi/spi_loopback/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(spi_loopback) diff --git a/tests/drivers/timer/nrf_rtc_timer/CMakeLists.txt b/tests/drivers/timer/nrf_rtc_timer/CMakeLists.txt index 0f708df5a3f..623877a6c24 100644 --- a/tests/drivers/timer/nrf_rtc_timer/CMakeLists.txt +++ b/tests/drivers/timer/nrf_rtc_timer/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(nrf_rtc_timer) diff --git a/tests/drivers/uart/uart_async_api/CMakeLists.txt b/tests/drivers/uart/uart_async_api/CMakeLists.txt index 26e78280b79..c1bf47fecdc 100644 --- a/tests/drivers/uart/uart_async_api/CMakeLists.txt +++ b/tests/drivers/uart/uart_async_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(uart_high_level_api) diff --git a/tests/drivers/uart/uart_basic_api/CMakeLists.txt b/tests/drivers/uart/uart_basic_api/CMakeLists.txt index 74edfd2685f..79b6260d8e9 100644 --- a/tests/drivers/uart/uart_basic_api/CMakeLists.txt +++ b/tests/drivers/uart/uart_basic_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(uart_basic_api) diff --git a/tests/drivers/uart/uart_mix_fifo_poll/CMakeLists.txt b/tests/drivers/uart/uart_mix_fifo_poll/CMakeLists.txt index 4512d35a62e..59b31ee68a9 100644 --- a/tests/drivers/uart/uart_mix_fifo_poll/CMakeLists.txt +++ b/tests/drivers/uart/uart_mix_fifo_poll/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(uart_high_level_api) diff --git a/tests/drivers/uart/uart_pm/CMakeLists.txt b/tests/drivers/uart/uart_pm/CMakeLists.txt index fbb79f0dcf3..43aff57f796 100644 --- a/tests/drivers/uart/uart_pm/CMakeLists.txt +++ b/tests/drivers/uart/uart_pm/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(uart_basic_api) diff --git a/tests/drivers/virtualization/ivshmem/CMakeLists.txt b/tests/drivers/virtualization/ivshmem/CMakeLists.txt index da8ff0b9398..5d3ab1037a1 100644 --- a/tests/drivers/virtualization/ivshmem/CMakeLists.txt +++ b/tests/drivers/virtualization/ivshmem/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright (c) 2020 Intel Corp. -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(qemu_x86_64_ivshmem) diff --git a/tests/drivers/watchdog/wdt_basic_api/CMakeLists.txt b/tests/drivers/watchdog/wdt_basic_api/CMakeLists.txt index 6094c67fbbe..690ec6ab829 100644 --- a/tests/drivers/watchdog/wdt_basic_api/CMakeLists.txt +++ b/tests/drivers/watchdog/wdt_basic_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(wdt_basic_api) diff --git a/tests/kernel/common/CMakeLists.txt b/tests/kernel/common/CMakeLists.txt index 4d650b844a9..04a613f792c 100644 --- a/tests/kernel/common/CMakeLists.txt +++ b/tests/kernel/common/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(kernel_common) diff --git a/tests/kernel/condvar/condvar_api/CMakeLists.txt b/tests/kernel/condvar/condvar_api/CMakeLists.txt index d94087106bf..b4ad1585cb4 100644 --- a/tests/kernel/condvar/condvar_api/CMakeLists.txt +++ b/tests/kernel/condvar/condvar_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(condvar) diff --git a/tests/kernel/context/CMakeLists.txt b/tests/kernel/context/CMakeLists.txt index a847b12f7d3..4ab4e993de3 100644 --- a/tests/kernel/context/CMakeLists.txt +++ b/tests/kernel/context/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(kernel_context) diff --git a/tests/kernel/device/CMakeLists.txt b/tests/kernel/device/CMakeLists.txt index 1d66b83d2e0..b3b448e4e6d 100644 --- a/tests/kernel/device/CMakeLists.txt +++ b/tests/kernel/device/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(device) diff --git a/tests/kernel/early_sleep/CMakeLists.txt b/tests/kernel/early_sleep/CMakeLists.txt index 1acd20e58a9..882462ac6c1 100644 --- a/tests/kernel/early_sleep/CMakeLists.txt +++ b/tests/kernel/early_sleep/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(early_sleep) diff --git a/tests/kernel/fatal/exception/CMakeLists.txt b/tests/kernel/fatal/exception/CMakeLists.txt index 3f47efe3a9b..7106280c386 100644 --- a/tests/kernel/fatal/exception/CMakeLists.txt +++ b/tests/kernel/fatal/exception/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fatal) diff --git a/tests/kernel/fatal/message_capture/CMakeLists.txt b/tests/kernel/fatal/message_capture/CMakeLists.txt index a093f4a22e5..75e2626fbe4 100644 --- a/tests/kernel/fatal/message_capture/CMakeLists.txt +++ b/tests/kernel/fatal/message_capture/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(message_capture) diff --git a/tests/kernel/fatal/no-multithreading/CMakeLists.txt b/tests/kernel/fatal/no-multithreading/CMakeLists.txt index 5bbc8926744..f1dec177052 100644 --- a/tests/kernel/fatal/no-multithreading/CMakeLists.txt +++ b/tests/kernel/fatal/no-multithreading/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fatal_no_mt) diff --git a/tests/kernel/fifo/fifo_api/CMakeLists.txt b/tests/kernel/fifo/fifo_api/CMakeLists.txt index 93767678ee7..fb36b75bbfd 100644 --- a/tests/kernel/fifo/fifo_api/CMakeLists.txt +++ b/tests/kernel/fifo/fifo_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fifo_api) diff --git a/tests/kernel/fifo/fifo_timeout/CMakeLists.txt b/tests/kernel/fifo/fifo_timeout/CMakeLists.txt index ec13563d503..d407d2d098c 100644 --- a/tests/kernel/fifo/fifo_timeout/CMakeLists.txt +++ b/tests/kernel/fifo/fifo_timeout/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fifo_timeout) diff --git a/tests/kernel/fifo/fifo_usage/CMakeLists.txt b/tests/kernel/fifo/fifo_usage/CMakeLists.txt index d2066222c78..261b8edee18 100644 --- a/tests/kernel/fifo/fifo_usage/CMakeLists.txt +++ b/tests/kernel/fifo/fifo_usage/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fifo_usage) diff --git a/tests/kernel/fpu_sharing/float_disable/CMakeLists.txt b/tests/kernel/fpu_sharing/float_disable/CMakeLists.txt index 0b8a3dc69b5..738f5a01e88 100644 --- a/tests/kernel/fpu_sharing/float_disable/CMakeLists.txt +++ b/tests/kernel/fpu_sharing/float_disable/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(k_float_disable) diff --git a/tests/kernel/fpu_sharing/generic/CMakeLists.txt b/tests/kernel/fpu_sharing/generic/CMakeLists.txt index 0399657ca99..80199f87903 100644 --- a/tests/kernel/fpu_sharing/generic/CMakeLists.txt +++ b/tests/kernel/fpu_sharing/generic/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fpu_sharing) diff --git a/tests/kernel/gen_isr_table/CMakeLists.txt b/tests/kernel/gen_isr_table/CMakeLists.txt index 84295b322fd..9bb0ffd574d 100644 --- a/tests/kernel/gen_isr_table/CMakeLists.txt +++ b/tests/kernel/gen_isr_table/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(gen_isr_table) diff --git a/tests/kernel/interrupt/CMakeLists.txt b/tests/kernel/interrupt/CMakeLists.txt index a7c3f862911..69a909af0ce 100644 --- a/tests/kernel/interrupt/CMakeLists.txt +++ b/tests/kernel/interrupt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(interrupt) diff --git a/tests/kernel/lifo/lifo_api/CMakeLists.txt b/tests/kernel/lifo/lifo_api/CMakeLists.txt index aa3b7385df0..b2eb8af3ba0 100644 --- a/tests/kernel/lifo/lifo_api/CMakeLists.txt +++ b/tests/kernel/lifo/lifo_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lifo_api) diff --git a/tests/kernel/lifo/lifo_usage/CMakeLists.txt b/tests/kernel/lifo/lifo_usage/CMakeLists.txt index 441f06a8a94..22d5eac2e70 100644 --- a/tests/kernel/lifo/lifo_usage/CMakeLists.txt +++ b/tests/kernel/lifo/lifo_usage/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lifo_usage) diff --git a/tests/kernel/mbox/mbox_api/CMakeLists.txt b/tests/kernel/mbox/mbox_api/CMakeLists.txt index e5efbd8a7a8..0b4510c30fd 100644 --- a/tests/kernel/mbox/mbox_api/CMakeLists.txt +++ b/tests/kernel/mbox/mbox_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mbox_api) diff --git a/tests/kernel/mbox/mbox_usage/CMakeLists.txt b/tests/kernel/mbox/mbox_usage/CMakeLists.txt index 0ed49d81564..903dd80a529 100644 --- a/tests/kernel/mbox/mbox_usage/CMakeLists.txt +++ b/tests/kernel/mbox/mbox_usage/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mbox_usage) diff --git a/tests/kernel/mem_heap/k_heap_api/CMakeLists.txt b/tests/kernel/mem_heap/k_heap_api/CMakeLists.txt index 5ae19e54163..30131ee9378 100644 --- a/tests/kernel/mem_heap/k_heap_api/CMakeLists.txt +++ b/tests/kernel/mem_heap/k_heap_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(k_heap_api) diff --git a/tests/kernel/mem_heap/mheap_api_concept/CMakeLists.txt b/tests/kernel/mem_heap/mheap_api_concept/CMakeLists.txt index defd3dcca0c..d2459db4894 100644 --- a/tests/kernel/mem_heap/mheap_api_concept/CMakeLists.txt +++ b/tests/kernel/mem_heap/mheap_api_concept/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mheap_api_concept) diff --git a/tests/kernel/mem_protect/demand_paging/CMakeLists.txt b/tests/kernel/mem_protect/demand_paging/CMakeLists.txt index 740ecd78d7e..15ce6431245 100644 --- a/tests/kernel/mem_protect/demand_paging/CMakeLists.txt +++ b/tests/kernel/mem_protect/demand_paging/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mem_map) diff --git a/tests/kernel/mem_protect/futex/CMakeLists.txt b/tests/kernel/mem_protect/futex/CMakeLists.txt index 3681ec78d85..dec6b066cdc 100644 --- a/tests/kernel/mem_protect/futex/CMakeLists.txt +++ b/tests/kernel/mem_protect/futex/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(futex) diff --git a/tests/kernel/mem_protect/mem_map/CMakeLists.txt b/tests/kernel/mem_protect/mem_map/CMakeLists.txt index eccc53e39d5..e3b92303c2b 100644 --- a/tests/kernel/mem_protect/mem_map/CMakeLists.txt +++ b/tests/kernel/mem_protect/mem_map/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mem_map) diff --git a/tests/kernel/mem_protect/mem_protect/CMakeLists.txt b/tests/kernel/mem_protect/mem_protect/CMakeLists.txt index 631b13879c9..f159368918a 100644 --- a/tests/kernel/mem_protect/mem_protect/CMakeLists.txt +++ b/tests/kernel/mem_protect/mem_protect/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mem_protect) diff --git a/tests/kernel/mem_protect/obj_validation/CMakeLists.txt b/tests/kernel/mem_protect/obj_validation/CMakeLists.txt index 30fe76cfe19..ce98a517063 100644 --- a/tests/kernel/mem_protect/obj_validation/CMakeLists.txt +++ b/tests/kernel/mem_protect/obj_validation/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(obj_validation) diff --git a/tests/kernel/mem_protect/protection/CMakeLists.txt b/tests/kernel/mem_protect/protection/CMakeLists.txt index 91e34d34b6a..632f15ca29f 100644 --- a/tests/kernel/mem_protect/protection/CMakeLists.txt +++ b/tests/kernel/mem_protect/protection/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(protection) diff --git a/tests/kernel/mem_protect/stack_random/CMakeLists.txt b/tests/kernel/mem_protect/stack_random/CMakeLists.txt index 6f66321d4ac..856d36adeb6 100644 --- a/tests/kernel/mem_protect/stack_random/CMakeLists.txt +++ b/tests/kernel/mem_protect/stack_random/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(stack_random) diff --git a/tests/kernel/mem_protect/stackprot/CMakeLists.txt b/tests/kernel/mem_protect/stackprot/CMakeLists.txt index 76f7809f10e..5e2445265c2 100644 --- a/tests/kernel/mem_protect/stackprot/CMakeLists.txt +++ b/tests/kernel/mem_protect/stackprot/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(stackprot) diff --git a/tests/kernel/mem_protect/sys_sem/CMakeLists.txt b/tests/kernel/mem_protect/sys_sem/CMakeLists.txt index 04eae125987..e1b8671bf82 100644 --- a/tests/kernel/mem_protect/sys_sem/CMakeLists.txt +++ b/tests/kernel/mem_protect/sys_sem/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sys_sem) diff --git a/tests/kernel/mem_protect/syscalls/CMakeLists.txt b/tests/kernel/mem_protect/syscalls/CMakeLists.txt index 55684803bba..372a26eb014 100644 --- a/tests/kernel/mem_protect/syscalls/CMakeLists.txt +++ b/tests/kernel/mem_protect/syscalls/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(syscalls) diff --git a/tests/kernel/mem_protect/userspace/CMakeLists.txt b/tests/kernel/mem_protect/userspace/CMakeLists.txt index 9daa748075f..c823f002de0 100644 --- a/tests/kernel/mem_protect/userspace/CMakeLists.txt +++ b/tests/kernel/mem_protect/userspace/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(userspace) diff --git a/tests/kernel/mem_slab/mslab/CMakeLists.txt b/tests/kernel/mem_slab/mslab/CMakeLists.txt index eb5eaa91a75..153391d5ebe 100644 --- a/tests/kernel/mem_slab/mslab/CMakeLists.txt +++ b/tests/kernel/mem_slab/mslab/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mslab) diff --git a/tests/kernel/mem_slab/mslab_api/CMakeLists.txt b/tests/kernel/mem_slab/mslab_api/CMakeLists.txt index 9d2f76f4d17..1c00b1338c0 100644 --- a/tests/kernel/mem_slab/mslab_api/CMakeLists.txt +++ b/tests/kernel/mem_slab/mslab_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mslab_api) diff --git a/tests/kernel/mem_slab/mslab_concept/CMakeLists.txt b/tests/kernel/mem_slab/mslab_concept/CMakeLists.txt index 62ca78557fa..1ec30d706c6 100644 --- a/tests/kernel/mem_slab/mslab_concept/CMakeLists.txt +++ b/tests/kernel/mem_slab/mslab_concept/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mslab_concept) diff --git a/tests/kernel/mem_slab/mslab_threadsafe/CMakeLists.txt b/tests/kernel/mem_slab/mslab_threadsafe/CMakeLists.txt index 46bf6adda25..c7a2b13f343 100644 --- a/tests/kernel/mem_slab/mslab_threadsafe/CMakeLists.txt +++ b/tests/kernel/mem_slab/mslab_threadsafe/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mslab_threadsafe) diff --git a/tests/kernel/mp/CMakeLists.txt b/tests/kernel/mp/CMakeLists.txt index 57525fa3d9e..cc7953923c8 100644 --- a/tests/kernel/mp/CMakeLists.txt +++ b/tests/kernel/mp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mp) diff --git a/tests/kernel/msgq/msgq_api/CMakeLists.txt b/tests/kernel/msgq/msgq_api/CMakeLists.txt index 2f708bcaabe..36aa908c203 100644 --- a/tests/kernel/msgq/msgq_api/CMakeLists.txt +++ b/tests/kernel/msgq/msgq_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(msgq_api) diff --git a/tests/kernel/msgq/msgq_usage/CMakeLists.txt b/tests/kernel/msgq/msgq_usage/CMakeLists.txt index 14bb3772e91..edeb9225b2b 100644 --- a/tests/kernel/msgq/msgq_usage/CMakeLists.txt +++ b/tests/kernel/msgq/msgq_usage/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(msgq_usage) diff --git a/tests/kernel/mutex/mutex_api/CMakeLists.txt b/tests/kernel/mutex/mutex_api/CMakeLists.txt index c3daf356965..d5ab5ee9db6 100644 --- a/tests/kernel/mutex/mutex_api/CMakeLists.txt +++ b/tests/kernel/mutex/mutex_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mutex_api) diff --git a/tests/kernel/mutex/mutex_error_case/CMakeLists.txt b/tests/kernel/mutex/mutex_error_case/CMakeLists.txt index c3daf356965..d5ab5ee9db6 100644 --- a/tests/kernel/mutex/mutex_error_case/CMakeLists.txt +++ b/tests/kernel/mutex/mutex_error_case/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mutex_api) diff --git a/tests/kernel/mutex/sys_mutex/CMakeLists.txt b/tests/kernel/mutex/sys_mutex/CMakeLists.txt index 73f2b17b751..b3f3b974af1 100644 --- a/tests/kernel/mutex/sys_mutex/CMakeLists.txt +++ b/tests/kernel/mutex/sys_mutex/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mutex) diff --git a/tests/kernel/pending/CMakeLists.txt b/tests/kernel/pending/CMakeLists.txt index de585a360fc..9fa566ceaf2 100644 --- a/tests/kernel/pending/CMakeLists.txt +++ b/tests/kernel/pending/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(pending) diff --git a/tests/kernel/pipe/pipe/CMakeLists.txt b/tests/kernel/pipe/pipe/CMakeLists.txt index 877343a6cc7..ac8bc4dee46 100644 --- a/tests/kernel/pipe/pipe/CMakeLists.txt +++ b/tests/kernel/pipe/pipe/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(pipe) diff --git a/tests/kernel/pipe/pipe_api/CMakeLists.txt b/tests/kernel/pipe/pipe_api/CMakeLists.txt index 39e17c513c1..fbaf5f15e11 100644 --- a/tests/kernel/pipe/pipe_api/CMakeLists.txt +++ b/tests/kernel/pipe/pipe_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(pipe_api) diff --git a/tests/kernel/poll/CMakeLists.txt b/tests/kernel/poll/CMakeLists.txt index fe82c05cb18..736a176f4e9 100644 --- a/tests/kernel/poll/CMakeLists.txt +++ b/tests/kernel/poll/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(poll) diff --git a/tests/kernel/profiling/profiling_api/CMakeLists.txt b/tests/kernel/profiling/profiling_api/CMakeLists.txt index b67b3e14a4a..c404b00d89a 100644 --- a/tests/kernel/profiling/profiling_api/CMakeLists.txt +++ b/tests/kernel/profiling/profiling_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(profiling_api) diff --git a/tests/kernel/queue/CMakeLists.txt b/tests/kernel/queue/CMakeLists.txt index 913a617ea63..6c5596e7181 100644 --- a/tests/kernel/queue/CMakeLists.txt +++ b/tests/kernel/queue/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(queue) diff --git a/tests/kernel/sched/deadline/CMakeLists.txt b/tests/kernel/sched/deadline/CMakeLists.txt index 286d9763ae0..2346475630f 100644 --- a/tests/kernel/sched/deadline/CMakeLists.txt +++ b/tests/kernel/sched/deadline/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(deadline) diff --git a/tests/kernel/sched/metairq/CMakeLists.txt b/tests/kernel/sched/metairq/CMakeLists.txt index d1dfb3d021f..9c1ee4dd211 100644 --- a/tests/kernel/sched/metairq/CMakeLists.txt +++ b/tests/kernel/sched/metairq/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(preempt) diff --git a/tests/kernel/sched/preempt/CMakeLists.txt b/tests/kernel/sched/preempt/CMakeLists.txt index d1dfb3d021f..9c1ee4dd211 100644 --- a/tests/kernel/sched/preempt/CMakeLists.txt +++ b/tests/kernel/sched/preempt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(preempt) diff --git a/tests/kernel/sched/schedule_api/CMakeLists.txt b/tests/kernel/sched/schedule_api/CMakeLists.txt index 76cb08015e3..75a311850ce 100644 --- a/tests/kernel/sched/schedule_api/CMakeLists.txt +++ b/tests/kernel/sched/schedule_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(schedule_api) diff --git a/tests/kernel/semaphore/semaphore/CMakeLists.txt b/tests/kernel/semaphore/semaphore/CMakeLists.txt index c71e7292e78..dbcd89c8be8 100644 --- a/tests/kernel/semaphore/semaphore/CMakeLists.txt +++ b/tests/kernel/semaphore/semaphore/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(semaphore) diff --git a/tests/kernel/semaphore/sys_sem/CMakeLists.txt b/tests/kernel/semaphore/sys_sem/CMakeLists.txt index c71e7292e78..dbcd89c8be8 100644 --- a/tests/kernel/semaphore/sys_sem/CMakeLists.txt +++ b/tests/kernel/semaphore/sys_sem/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(semaphore) diff --git a/tests/kernel/sleep/CMakeLists.txt b/tests/kernel/sleep/CMakeLists.txt index 972a2fbaf3a..13e7852267c 100644 --- a/tests/kernel/sleep/CMakeLists.txt +++ b/tests/kernel/sleep/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sleep) diff --git a/tests/kernel/smp/CMakeLists.txt b/tests/kernel/smp/CMakeLists.txt index 48e12bb72f1..f32de519289 100644 --- a/tests/kernel/smp/CMakeLists.txt +++ b/tests/kernel/smp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(smp) diff --git a/tests/kernel/spinlock/CMakeLists.txt b/tests/kernel/spinlock/CMakeLists.txt index d1dce5c8c2e..823174ba17e 100644 --- a/tests/kernel/spinlock/CMakeLists.txt +++ b/tests/kernel/spinlock/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(spinlock) diff --git a/tests/kernel/stack/stack/CMakeLists.txt b/tests/kernel/stack/stack/CMakeLists.txt index e9f0e61bc81..9e4578a2e77 100644 --- a/tests/kernel/stack/stack/CMakeLists.txt +++ b/tests/kernel/stack/stack/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(stack_usage) diff --git a/tests/kernel/threads/dynamic_thread/CMakeLists.txt b/tests/kernel/threads/dynamic_thread/CMakeLists.txt index 53982fa8cc2..ade6904037b 100644 --- a/tests/kernel/threads/dynamic_thread/CMakeLists.txt +++ b/tests/kernel/threads/dynamic_thread/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dynamic_thread) diff --git a/tests/kernel/threads/no-multithreading/CMakeLists.txt b/tests/kernel/threads/no-multithreading/CMakeLists.txt index ed8edc45d6a..78dc26415fe 100644 --- a/tests/kernel/threads/no-multithreading/CMakeLists.txt +++ b/tests/kernel/threads/no-multithreading/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(no-multithreading) diff --git a/tests/kernel/threads/thread_apis/CMakeLists.txt b/tests/kernel/threads/thread_apis/CMakeLists.txt index 393321df843..3244479e30e 100644 --- a/tests/kernel/threads/thread_apis/CMakeLists.txt +++ b/tests/kernel/threads/thread_apis/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(thread_apis) diff --git a/tests/kernel/threads/thread_error_case/CMakeLists.txt b/tests/kernel/threads/thread_error_case/CMakeLists.txt index 393321df843..3244479e30e 100644 --- a/tests/kernel/threads/thread_error_case/CMakeLists.txt +++ b/tests/kernel/threads/thread_error_case/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(thread_apis) diff --git a/tests/kernel/threads/thread_init/CMakeLists.txt b/tests/kernel/threads/thread_init/CMakeLists.txt index fcd4f2f55ce..cf0200ba654 100644 --- a/tests/kernel/threads/thread_init/CMakeLists.txt +++ b/tests/kernel/threads/thread_init/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(thread_init) diff --git a/tests/kernel/threads/thread_stack/CMakeLists.txt b/tests/kernel/threads/thread_stack/CMakeLists.txt index 05fc63dc022..c66b6c62092 100644 --- a/tests/kernel/threads/thread_stack/CMakeLists.txt +++ b/tests/kernel/threads/thread_stack/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(thread_stack) diff --git a/tests/kernel/threads/tls/CMakeLists.txt b/tests/kernel/threads/tls/CMakeLists.txt index c3a034f534d..10856f52c8f 100644 --- a/tests/kernel/threads/tls/CMakeLists.txt +++ b/tests/kernel/threads/tls/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tls) diff --git a/tests/kernel/tickless/tickless_concept/CMakeLists.txt b/tests/kernel/tickless/tickless_concept/CMakeLists.txt index 060d89843d5..26069d8de24 100644 --- a/tests/kernel/tickless/tickless_concept/CMakeLists.txt +++ b/tests/kernel/tickless/tickless_concept/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tickless_concept) diff --git a/tests/kernel/timer/starve/CMakeLists.txt b/tests/kernel/timer/starve/CMakeLists.txt index b5e2e1ca79a..ee83681cfb8 100644 --- a/tests/kernel/timer/starve/CMakeLists.txt +++ b/tests/kernel/timer/starve/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(timer_starve) diff --git a/tests/kernel/timer/timer_api/CMakeLists.txt b/tests/kernel/timer/timer_api/CMakeLists.txt index b13c20f0075..142b797e69e 100644 --- a/tests/kernel/timer/timer_api/CMakeLists.txt +++ b/tests/kernel/timer/timer_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(timer_api) diff --git a/tests/kernel/timer/timer_error_case/CMakeLists.txt b/tests/kernel/timer/timer_error_case/CMakeLists.txt index b13c20f0075..142b797e69e 100644 --- a/tests/kernel/timer/timer_error_case/CMakeLists.txt +++ b/tests/kernel/timer/timer_error_case/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(timer_api) diff --git a/tests/kernel/timer/timer_monotonic/CMakeLists.txt b/tests/kernel/timer/timer_monotonic/CMakeLists.txt index 8418e489443..7c251360d6b 100644 --- a/tests/kernel/timer/timer_monotonic/CMakeLists.txt +++ b/tests/kernel/timer/timer_monotonic/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(timer_monotonic) diff --git a/tests/kernel/workq/critical/CMakeLists.txt b/tests/kernel/workq/critical/CMakeLists.txt index f82f23613ff..62faaac38ad 100644 --- a/tests/kernel/workq/critical/CMakeLists.txt +++ b/tests/kernel/workq/critical/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(critical) diff --git a/tests/kernel/workq/user_work/CMakeLists.txt b/tests/kernel/workq/user_work/CMakeLists.txt index d7b7200142c..904318e03f5 100644 --- a/tests/kernel/workq/user_work/CMakeLists.txt +++ b/tests/kernel/workq/user_work/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(user_work) diff --git a/tests/kernel/workq/work/CMakeLists.txt b/tests/kernel/workq/work/CMakeLists.txt index e06d02daa53..30386cc14fc 100644 --- a/tests/kernel/workq/work/CMakeLists.txt +++ b/tests/kernel/workq/work/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(work) diff --git a/tests/kernel/workq/work_queue/CMakeLists.txt b/tests/kernel/workq/work_queue/CMakeLists.txt index 7d9b307822e..fcf1430c476 100644 --- a/tests/kernel/workq/work_queue/CMakeLists.txt +++ b/tests/kernel/workq/work_queue/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(work_queue) diff --git a/tests/kernel/xip/CMakeLists.txt b/tests/kernel/xip/CMakeLists.txt index 526506a731a..0ce9dd73b21 100644 --- a/tests/kernel/xip/CMakeLists.txt +++ b/tests/kernel/xip/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(xip) diff --git a/tests/lib/c_lib/CMakeLists.txt b/tests/lib/c_lib/CMakeLists.txt index 774fb1b24e0..2d5c65a0329 100644 --- a/tests/lib/c_lib/CMakeLists.txt +++ b/tests/lib/c_lib/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(c_lib) diff --git a/tests/lib/cbprintf_fp/CMakeLists.txt b/tests/lib/cbprintf_fp/CMakeLists.txt index bc841b6e8af..3fdba826843 100644 --- a/tests/lib/cbprintf_fp/CMakeLists.txt +++ b/tests/lib/cbprintf_fp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cbprintf_fp) diff --git a/tests/lib/cbprintf_package/CMakeLists.txt b/tests/lib/cbprintf_package/CMakeLists.txt index ef886a126f5..3e7c6b03c55 100644 --- a/tests/lib/cbprintf_package/CMakeLists.txt +++ b/tests/lib/cbprintf_package/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cbprintf_package) diff --git a/tests/lib/cmsis_dsp/basicmath/CMakeLists.txt b/tests/lib/cmsis_dsp/basicmath/CMakeLists.txt index ef7cce17b8f..b091d335976 100644 --- a/tests/lib/cmsis_dsp/basicmath/CMakeLists.txt +++ b/tests/lib/cmsis_dsp/basicmath/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_basicmath) diff --git a/tests/lib/cmsis_dsp/bayes/CMakeLists.txt b/tests/lib/cmsis_dsp/bayes/CMakeLists.txt index b83ce4bc022..a1200b695e4 100644 --- a/tests/lib/cmsis_dsp/bayes/CMakeLists.txt +++ b/tests/lib/cmsis_dsp/bayes/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_bayes) diff --git a/tests/lib/cmsis_dsp/complexmath/CMakeLists.txt b/tests/lib/cmsis_dsp/complexmath/CMakeLists.txt index 87c1995e181..229f7c6161a 100644 --- a/tests/lib/cmsis_dsp/complexmath/CMakeLists.txt +++ b/tests/lib/cmsis_dsp/complexmath/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_complexmath) diff --git a/tests/lib/cmsis_dsp/distance/CMakeLists.txt b/tests/lib/cmsis_dsp/distance/CMakeLists.txt index 27860062426..aaaabd68803 100644 --- a/tests/lib/cmsis_dsp/distance/CMakeLists.txt +++ b/tests/lib/cmsis_dsp/distance/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_distance) diff --git a/tests/lib/cmsis_dsp/fastmath/CMakeLists.txt b/tests/lib/cmsis_dsp/fastmath/CMakeLists.txt index 40469444a34..9a96bdb3ec2 100644 --- a/tests/lib/cmsis_dsp/fastmath/CMakeLists.txt +++ b/tests/lib/cmsis_dsp/fastmath/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_fastmath) diff --git a/tests/lib/cmsis_dsp/filtering/CMakeLists.txt b/tests/lib/cmsis_dsp/filtering/CMakeLists.txt index 1e34ab67e37..1f8b47de634 100644 --- a/tests/lib/cmsis_dsp/filtering/CMakeLists.txt +++ b/tests/lib/cmsis_dsp/filtering/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_filtering) diff --git a/tests/lib/cmsis_dsp/matrix/CMakeLists.txt b/tests/lib/cmsis_dsp/matrix/CMakeLists.txt index a47ea4bc8eb..e824a5736a8 100644 --- a/tests/lib/cmsis_dsp/matrix/CMakeLists.txt +++ b/tests/lib/cmsis_dsp/matrix/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_matrix) diff --git a/tests/lib/cmsis_dsp/statistics/CMakeLists.txt b/tests/lib/cmsis_dsp/statistics/CMakeLists.txt index 7be408fd81b..60ac623f503 100644 --- a/tests/lib/cmsis_dsp/statistics/CMakeLists.txt +++ b/tests/lib/cmsis_dsp/statistics/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_statistics) diff --git a/tests/lib/cmsis_dsp/support/CMakeLists.txt b/tests/lib/cmsis_dsp/support/CMakeLists.txt index 5f6fffcf246..6cabfc25ade 100644 --- a/tests/lib/cmsis_dsp/support/CMakeLists.txt +++ b/tests/lib/cmsis_dsp/support/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_support) diff --git a/tests/lib/cmsis_dsp/svm/CMakeLists.txt b/tests/lib/cmsis_dsp/svm/CMakeLists.txt index 52b9bdfed65..b72a26e552a 100644 --- a/tests/lib/cmsis_dsp/svm/CMakeLists.txt +++ b/tests/lib/cmsis_dsp/svm/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_svm) diff --git a/tests/lib/cmsis_dsp/transform/CMakeLists.txt b/tests/lib/cmsis_dsp/transform/CMakeLists.txt index 0f66eaaf795..81d70f565a3 100644 --- a/tests/lib/cmsis_dsp/transform/CMakeLists.txt +++ b/tests/lib/cmsis_dsp/transform/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_dsp_transform) diff --git a/tests/lib/devicetree/api/CMakeLists.txt b/tests/lib/devicetree/api/CMakeLists.txt index 60a04403df7..d719798edb9 100644 --- a/tests/lib/devicetree/api/CMakeLists.txt +++ b/tests/lib/devicetree/api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(devicetree) diff --git a/tests/lib/devicetree/devices/CMakeLists.txt b/tests/lib/devicetree/devices/CMakeLists.txt index 4273ca7b832..bf5a1867570 100644 --- a/tests/lib/devicetree/devices/CMakeLists.txt +++ b/tests/lib/devicetree/devices/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(devicetree_devices) diff --git a/tests/lib/fdtable/CMakeLists.txt b/tests/lib/fdtable/CMakeLists.txt index 034fdcea654..6936f8a4627 100644 --- a/tests/lib/fdtable/CMakeLists.txt +++ b/tests/lib/fdtable/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fdtable) diff --git a/tests/lib/gui/lvgl/CMakeLists.txt b/tests/lib/gui/lvgl/CMakeLists.txt index e531115cacd..5ca5bac7541 100644 --- a/tests/lib/gui/lvgl/CMakeLists.txt +++ b/tests/lib/gui/lvgl/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(lvgl) diff --git a/tests/lib/heap/CMakeLists.txt b/tests/lib/heap/CMakeLists.txt index 9aca1b2559f..029a648763f 100644 --- a/tests/lib/heap/CMakeLists.txt +++ b/tests/lib/heap/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(heap) diff --git a/tests/lib/heap_align/CMakeLists.txt b/tests/lib/heap_align/CMakeLists.txt index a95e8dc7d5e..fdc85f35f93 100644 --- a/tests/lib/heap_align/CMakeLists.txt +++ b/tests/lib/heap_align/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(heap_align) diff --git a/tests/lib/json/CMakeLists.txt b/tests/lib/json/CMakeLists.txt index 34bd85b19b8..28a3b3d8ef9 100644 --- a/tests/lib/json/CMakeLists.txt +++ b/tests/lib/json/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(json) diff --git a/tests/lib/mem_alloc/CMakeLists.txt b/tests/lib/mem_alloc/CMakeLists.txt index b19a7244e2a..ca72b4d1d19 100644 --- a/tests/lib/mem_alloc/CMakeLists.txt +++ b/tests/lib/mem_alloc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mem_alloc) diff --git a/tests/lib/mpsc_pbuf/CMakeLists.txt b/tests/lib/mpsc_pbuf/CMakeLists.txt index 2c217cb0c9f..0e6136fea3c 100644 --- a/tests/lib/mpsc_pbuf/CMakeLists.txt +++ b/tests/lib/mpsc_pbuf/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mpsc_pbuf) diff --git a/tests/lib/newlib/thread_safety/CMakeLists.txt b/tests/lib/newlib/thread_safety/CMakeLists.txt index e449e3fe52e..668b87477c0 100644 --- a/tests/lib/newlib/thread_safety/CMakeLists.txt +++ b/tests/lib/newlib/thread_safety/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(newlib_thread_safety) diff --git a/tests/lib/notify/CMakeLists.txt b/tests/lib/notify/CMakeLists.txt index 873f2fad6a3..2cccfbf32df 100644 --- a/tests/lib/notify/CMakeLists.txt +++ b/tests/lib/notify/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sys_notify) diff --git a/tests/lib/onoff/CMakeLists.txt b/tests/lib/onoff/CMakeLists.txt index 139ae5a85c7..7cbb74f4864 100644 --- a/tests/lib/onoff/CMakeLists.txt +++ b/tests/lib/onoff/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(onoff) diff --git a/tests/lib/p4workq/CMakeLists.txt b/tests/lib/p4workq/CMakeLists.txt index f8f30a5c02f..90d062b1c00 100644 --- a/tests/lib/p4workq/CMakeLists.txt +++ b/tests/lib/p4workq/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(p4workq) diff --git a/tests/lib/ringbuffer/CMakeLists.txt b/tests/lib/ringbuffer/CMakeLists.txt index 555cd0d2fe3..ceb8aadd2e6 100644 --- a/tests/lib/ringbuffer/CMakeLists.txt +++ b/tests/lib/ringbuffer/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ringbuffer) diff --git a/tests/lib/sprintf/CMakeLists.txt b/tests/lib/sprintf/CMakeLists.txt index 7ec4d73d656..e57f568684d 100644 --- a/tests/lib/sprintf/CMakeLists.txt +++ b/tests/lib/sprintf/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(sprintf) diff --git a/tests/lib/time/CMakeLists.txt b/tests/lib/time/CMakeLists.txt index 0ffcb2b7e82..863428d414a 100644 --- a/tests/lib/time/CMakeLists.txt +++ b/tests/lib/time/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(time) diff --git a/tests/misc/test_build/CMakeLists.txt b/tests/misc/test_build/CMakeLists.txt index a0cbc0c4787..d06ca0cad15 100644 --- a/tests/misc/test_build/CMakeLists.txt +++ b/tests/misc/test_build/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(test_build) diff --git a/tests/net/6lo/CMakeLists.txt b/tests/net/6lo/CMakeLists.txt index b2af02dabad..063d0102a5d 100644 --- a/tests/net/6lo/CMakeLists.txt +++ b/tests/net/6lo/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(6lo) diff --git a/tests/net/all/CMakeLists.txt b/tests/net/all/CMakeLists.txt index 351f5fd728c..1e9e7fe3f44 100644 --- a/tests/net/all/CMakeLists.txt +++ b/tests/net/all/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(all) diff --git a/tests/net/arp/CMakeLists.txt b/tests/net/arp/CMakeLists.txt index bc7e227ac1a..3376d484165 100644 --- a/tests/net/arp/CMakeLists.txt +++ b/tests/net/arp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(arp) diff --git a/tests/net/bridge/CMakeLists.txt b/tests/net/bridge/CMakeLists.txt index 07f1c56f525..1db6aa20e0f 100644 --- a/tests/net/bridge/CMakeLists.txt +++ b/tests/net/bridge/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bridge) diff --git a/tests/net/buf/CMakeLists.txt b/tests/net/buf/CMakeLists.txt index e009a07765f..5678af82293 100644 --- a/tests/net/buf/CMakeLists.txt +++ b/tests/net/buf/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(buf) diff --git a/tests/net/checksum_offload/CMakeLists.txt b/tests/net/checksum_offload/CMakeLists.txt index 0eb3ddb4b30..37fc53374d3 100644 --- a/tests/net/checksum_offload/CMakeLists.txt +++ b/tests/net/checksum_offload/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(checksum_offload) diff --git a/tests/net/context/CMakeLists.txt b/tests/net/context/CMakeLists.txt index 57a0e0e9da3..364b5222f8a 100644 --- a/tests/net/context/CMakeLists.txt +++ b/tests/net/context/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(net_context) diff --git a/tests/net/dhcpv4/CMakeLists.txt b/tests/net/dhcpv4/CMakeLists.txt index 3c78225c032..a26e2495de5 100644 --- a/tests/net/dhcpv4/CMakeLists.txt +++ b/tests/net/dhcpv4/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dhcpv4) diff --git a/tests/net/ethernet_mgmt/CMakeLists.txt b/tests/net/ethernet_mgmt/CMakeLists.txt index 6ab5bfbc5f1..6472562fbce 100644 --- a/tests/net/ethernet_mgmt/CMakeLists.txt +++ b/tests/net/ethernet_mgmt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ethernet_mgmt) diff --git a/tests/net/hostname/CMakeLists.txt b/tests/net/hostname/CMakeLists.txt index 2282fd4f456..dba2a43f052 100644 --- a/tests/net/hostname/CMakeLists.txt +++ b/tests/net/hostname/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(iface) diff --git a/tests/net/icmpv4/CMakeLists.txt b/tests/net/icmpv4/CMakeLists.txt index 9c5870ef934..a823afa24a3 100644 --- a/tests/net/icmpv4/CMakeLists.txt +++ b/tests/net/icmpv4/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(icmpv4) diff --git a/tests/net/icmpv6/CMakeLists.txt b/tests/net/icmpv6/CMakeLists.txt index 1bc0d473143..1adbf902bbb 100644 --- a/tests/net/icmpv6/CMakeLists.txt +++ b/tests/net/icmpv6/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(icmpv6) diff --git a/tests/net/ieee802154/fragment/CMakeLists.txt b/tests/net/ieee802154/fragment/CMakeLists.txt index 79c19753f4e..c1758072174 100644 --- a/tests/net/ieee802154/fragment/CMakeLists.txt +++ b/tests/net/ieee802154/fragment/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fragment) diff --git a/tests/net/ieee802154/l2/CMakeLists.txt b/tests/net/ieee802154/l2/CMakeLists.txt index 5f86ee4cf15..bfb4b713f90 100644 --- a/tests/net/ieee802154/l2/CMakeLists.txt +++ b/tests/net/ieee802154/l2/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(l2) diff --git a/tests/net/iface/CMakeLists.txt b/tests/net/iface/CMakeLists.txt index 2282fd4f456..dba2a43f052 100644 --- a/tests/net/iface/CMakeLists.txt +++ b/tests/net/iface/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(iface) diff --git a/tests/net/igmp/CMakeLists.txt b/tests/net/igmp/CMakeLists.txt index 8a910ecd97a..44c347478ef 100644 --- a/tests/net/igmp/CMakeLists.txt +++ b/tests/net/igmp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mld) diff --git a/tests/net/ip-addr/CMakeLists.txt b/tests/net/ip-addr/CMakeLists.txt index 5e128ede471..73058491b34 100644 --- a/tests/net/ip-addr/CMakeLists.txt +++ b/tests/net/ip-addr/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ip-addr) diff --git a/tests/net/ipv6/CMakeLists.txt b/tests/net/ipv6/CMakeLists.txt index 83460f9bd9c..8cdd5912401 100644 --- a/tests/net/ipv6/CMakeLists.txt +++ b/tests/net/ipv6/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ipv6) diff --git a/tests/net/ipv6_fragment/CMakeLists.txt b/tests/net/ipv6_fragment/CMakeLists.txt index 48be1168f5c..62016d29c7c 100644 --- a/tests/net/ipv6_fragment/CMakeLists.txt +++ b/tests/net/ipv6_fragment/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(ipv6_fragment) diff --git a/tests/net/lib/coap/CMakeLists.txt b/tests/net/lib/coap/CMakeLists.txt index ecd5de54e6c..fd98ab08d7c 100644 --- a/tests/net/lib/coap/CMakeLists.txt +++ b/tests/net/lib/coap/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(coap) diff --git a/tests/net/lib/dns_addremove/CMakeLists.txt b/tests/net/lib/dns_addremove/CMakeLists.txt index fe52498a67c..c23896f16bf 100644 --- a/tests/net/lib/dns_addremove/CMakeLists.txt +++ b/tests/net/lib/dns_addremove/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dns_addremove) diff --git a/tests/net/lib/dns_packet/CMakeLists.txt b/tests/net/lib/dns_packet/CMakeLists.txt index 1ddf0f385fd..865ab7ceb9b 100644 --- a/tests/net/lib/dns_packet/CMakeLists.txt +++ b/tests/net/lib/dns_packet/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dns_packet) diff --git a/tests/net/lib/dns_resolve/CMakeLists.txt b/tests/net/lib/dns_resolve/CMakeLists.txt index 4246d236d56..c25b51c0e14 100644 --- a/tests/net/lib/dns_resolve/CMakeLists.txt +++ b/tests/net/lib/dns_resolve/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dns_resolve) diff --git a/tests/net/lib/dns_sd/CMakeLists.txt b/tests/net/lib/dns_sd/CMakeLists.txt index 10c198e0135..61557e82bd7 100644 --- a/tests/net/lib/dns_sd/CMakeLists.txt +++ b/tests/net/lib/dns_sd/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(dns_sd) diff --git a/tests/net/lib/http_header_fields/CMakeLists.txt b/tests/net/lib/http_header_fields/CMakeLists.txt index c27ce655d13..8b1b2957c5e 100644 --- a/tests/net/lib/http_header_fields/CMakeLists.txt +++ b/tests/net/lib/http_header_fields/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(http_header_fields) diff --git a/tests/net/lib/mqtt_packet/CMakeLists.txt b/tests/net/lib/mqtt_packet/CMakeLists.txt index a9e6d0c5b02..893bf593782 100644 --- a/tests/net/lib/mqtt_packet/CMakeLists.txt +++ b/tests/net/lib/mqtt_packet/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mqtt_packet) diff --git a/tests/net/lib/mqtt_publisher/CMakeLists.txt b/tests/net/lib/mqtt_publisher/CMakeLists.txt index 2c7731f59e9..d32b1278779 100644 --- a/tests/net/lib/mqtt_publisher/CMakeLists.txt +++ b/tests/net/lib/mqtt_publisher/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mqtt_publisher) diff --git a/tests/net/lib/mqtt_pubsub/CMakeLists.txt b/tests/net/lib/mqtt_pubsub/CMakeLists.txt index 071db3a892e..1339e162f29 100644 --- a/tests/net/lib/mqtt_pubsub/CMakeLists.txt +++ b/tests/net/lib/mqtt_pubsub/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mqtt_subscriber) diff --git a/tests/net/lib/mqtt_subscriber/CMakeLists.txt b/tests/net/lib/mqtt_subscriber/CMakeLists.txt index 071db3a892e..1339e162f29 100644 --- a/tests/net/lib/mqtt_subscriber/CMakeLists.txt +++ b/tests/net/lib/mqtt_subscriber/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mqtt_subscriber) diff --git a/tests/net/lib/tls_credentials/CMakeLists.txt b/tests/net/lib/tls_credentials/CMakeLists.txt index 605652c00b2..9d2013ee645 100644 --- a/tests/net/lib/tls_credentials/CMakeLists.txt +++ b/tests/net/lib/tls_credentials/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tls_credentials) diff --git a/tests/net/mgmt/CMakeLists.txt b/tests/net/mgmt/CMakeLists.txt index 4d8cc3464a1..43b288083ff 100644 --- a/tests/net/mgmt/CMakeLists.txt +++ b/tests/net/mgmt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mgmt) diff --git a/tests/net/mld/CMakeLists.txt b/tests/net/mld/CMakeLists.txt index 8a910ecd97a..44c347478ef 100644 --- a/tests/net/mld/CMakeLists.txt +++ b/tests/net/mld/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mld) diff --git a/tests/net/neighbor/CMakeLists.txt b/tests/net/neighbor/CMakeLists.txt index f717009b11e..c5950a201d9 100644 --- a/tests/net/neighbor/CMakeLists.txt +++ b/tests/net/neighbor/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(neighbor) diff --git a/tests/net/net_pkt/CMakeLists.txt b/tests/net/net_pkt/CMakeLists.txt index ca1a8b73466..085611ea4fc 100644 --- a/tests/net/net_pkt/CMakeLists.txt +++ b/tests/net/net_pkt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(net_pkt) diff --git a/tests/net/pm/CMakeLists.txt b/tests/net/pm/CMakeLists.txt index 70b4a8f65dd..365610b2971 100644 --- a/tests/net/pm/CMakeLists.txt +++ b/tests/net/pm/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(pm) diff --git a/tests/net/ppp/driver/CMakeLists.txt b/tests/net/ppp/driver/CMakeLists.txt index 2282fd4f456..dba2a43f052 100644 --- a/tests/net/ppp/driver/CMakeLists.txt +++ b/tests/net/ppp/driver/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(iface) diff --git a/tests/net/promiscuous/CMakeLists.txt b/tests/net/promiscuous/CMakeLists.txt index 2237882ae71..f3af27357cd 100644 --- a/tests/net/promiscuous/CMakeLists.txt +++ b/tests/net/promiscuous/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(promiscuous) diff --git a/tests/net/ptp/clock/CMakeLists.txt b/tests/net/ptp/clock/CMakeLists.txt index 0c3e6e93424..87232ec0027 100644 --- a/tests/net/ptp/clock/CMakeLists.txt +++ b/tests/net/ptp/clock/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(clock) diff --git a/tests/net/route/CMakeLists.txt b/tests/net/route/CMakeLists.txt index 2a93ce4a05a..ff54b10b92c 100644 --- a/tests/net/route/CMakeLists.txt +++ b/tests/net/route/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(route) diff --git a/tests/net/route_mcast/CMakeLists.txt b/tests/net/route_mcast/CMakeLists.txt index 84c48eacb9b..9fa3257e4df 100644 --- a/tests/net/route_mcast/CMakeLists.txt +++ b/tests/net/route_mcast/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(route_mcast) diff --git a/tests/net/shell/CMakeLists.txt b/tests/net/shell/CMakeLists.txt index 1b723460266..815189815be 100644 --- a/tests/net/shell/CMakeLists.txt +++ b/tests/net/shell/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(udp) diff --git a/tests/net/socket/af_packet/CMakeLists.txt b/tests/net/socket/af_packet/CMakeLists.txt index e1f71928af1..83d02a8e543 100644 --- a/tests/net/socket/af_packet/CMakeLists.txt +++ b/tests/net/socket/af_packet/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(socket_udp) diff --git a/tests/net/socket/getaddrinfo/CMakeLists.txt b/tests/net/socket/getaddrinfo/CMakeLists.txt index 37eac0bbecf..1224f4f50b4 100644 --- a/tests/net/socket/getaddrinfo/CMakeLists.txt +++ b/tests/net/socket/getaddrinfo/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(getaddrinfo) diff --git a/tests/net/socket/getnameinfo/CMakeLists.txt b/tests/net/socket/getnameinfo/CMakeLists.txt index 52d6937dae4..b2c9e2476e7 100644 --- a/tests/net/socket/getnameinfo/CMakeLists.txt +++ b/tests/net/socket/getnameinfo/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(getnameinfo) diff --git a/tests/net/socket/misc/CMakeLists.txt b/tests/net/socket/misc/CMakeLists.txt index 16b93d70c7b..00b96b355a3 100644 --- a/tests/net/socket/misc/CMakeLists.txt +++ b/tests/net/socket/misc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(socket-misc) diff --git a/tests/net/socket/net_mgmt/CMakeLists.txt b/tests/net/socket/net_mgmt/CMakeLists.txt index 37eac0bbecf..1224f4f50b4 100644 --- a/tests/net/socket/net_mgmt/CMakeLists.txt +++ b/tests/net/socket/net_mgmt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(getaddrinfo) diff --git a/tests/net/socket/poll/CMakeLists.txt b/tests/net/socket/poll/CMakeLists.txt index f96e0d03e9f..1f85d6ad372 100644 --- a/tests/net/socket/poll/CMakeLists.txt +++ b/tests/net/socket/poll/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(socket_poll) diff --git a/tests/net/socket/register/CMakeLists.txt b/tests/net/socket/register/CMakeLists.txt index 7ce2b21ff3a..a0768865d47 100644 --- a/tests/net/socket/register/CMakeLists.txt +++ b/tests/net/socket/register/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(socket_register) diff --git a/tests/net/socket/select/CMakeLists.txt b/tests/net/socket/select/CMakeLists.txt index d6bb71a1bc4..da2431aa973 100644 --- a/tests/net/socket/select/CMakeLists.txt +++ b/tests/net/socket/select/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(select) diff --git a/tests/net/socket/socketpair/CMakeLists.txt b/tests/net/socket/socketpair/CMakeLists.txt index 39016f79e7b..484bcfc674f 100644 --- a/tests/net/socket/socketpair/CMakeLists.txt +++ b/tests/net/socket/socketpair/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(socketpair) diff --git a/tests/net/socket/tcp/CMakeLists.txt b/tests/net/socket/tcp/CMakeLists.txt index 67457dd68a2..92d88fe323a 100644 --- a/tests/net/socket/tcp/CMakeLists.txt +++ b/tests/net/socket/tcp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(socket_tcp) diff --git a/tests/net/socket/tls/CMakeLists.txt b/tests/net/socket/tls/CMakeLists.txt index b9099084d0c..2d38911a56f 100644 --- a/tests/net/socket/tls/CMakeLists.txt +++ b/tests/net/socket/tls/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(socket_tls) diff --git a/tests/net/socket/tls_ext/CMakeLists.txt b/tests/net/socket/tls_ext/CMakeLists.txt index 8b9d0a19b01..b21e357e5d5 100644 --- a/tests/net/socket/tls_ext/CMakeLists.txt +++ b/tests/net/socket/tls_ext/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tls_socket_api_extension) diff --git a/tests/net/socket/udp/CMakeLists.txt b/tests/net/socket/udp/CMakeLists.txt index e1f71928af1..83d02a8e543 100644 --- a/tests/net/socket/udp/CMakeLists.txt +++ b/tests/net/socket/udp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(socket_udp) diff --git a/tests/net/socket/websocket/CMakeLists.txt b/tests/net/socket/websocket/CMakeLists.txt index 14a316259cb..9cb34569ea8 100644 --- a/tests/net/socket/websocket/CMakeLists.txt +++ b/tests/net/socket/websocket/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(websocket) diff --git a/tests/net/tcp2/CMakeLists.txt b/tests/net/tcp2/CMakeLists.txt index ec6f6de3718..e5dbc35c20e 100644 --- a/tests/net/tcp2/CMakeLists.txt +++ b/tests/net/tcp2/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tcp) diff --git a/tests/net/traffic_class/CMakeLists.txt b/tests/net/traffic_class/CMakeLists.txt index e978597b626..86ac3eca314 100644 --- a/tests/net/traffic_class/CMakeLists.txt +++ b/tests/net/traffic_class/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(traffic_class) diff --git a/tests/net/trickle/CMakeLists.txt b/tests/net/trickle/CMakeLists.txt index 0ff8d350b91..e5a753d2402 100644 --- a/tests/net/trickle/CMakeLists.txt +++ b/tests/net/trickle/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(trickle) diff --git a/tests/net/tx_timestamp/CMakeLists.txt b/tests/net/tx_timestamp/CMakeLists.txt index fd58a7b8f1c..3bd6f693da3 100644 --- a/tests/net/tx_timestamp/CMakeLists.txt +++ b/tests/net/tx_timestamp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(tx_timestamp) diff --git a/tests/net/udp/CMakeLists.txt b/tests/net/udp/CMakeLists.txt index 1b723460266..815189815be 100644 --- a/tests/net/udp/CMakeLists.txt +++ b/tests/net/udp/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(udp) diff --git a/tests/net/utils/CMakeLists.txt b/tests/net/utils/CMakeLists.txt index 4f1c66312bf..3bc5c273bc4 100644 --- a/tests/net/utils/CMakeLists.txt +++ b/tests/net/utils/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(utils) diff --git a/tests/net/virtual/CMakeLists.txt b/tests/net/virtual/CMakeLists.txt index 38a2fa1acbe..3c61d542a0b 100644 --- a/tests/net/virtual/CMakeLists.txt +++ b/tests/net/virtual/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(vlan) diff --git a/tests/net/vlan/CMakeLists.txt b/tests/net/vlan/CMakeLists.txt index 38a2fa1acbe..3c61d542a0b 100644 --- a/tests/net/vlan/CMakeLists.txt +++ b/tests/net/vlan/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(vlan) diff --git a/tests/posix/common/CMakeLists.txt b/tests/posix/common/CMakeLists.txt index 8b530b0b85f..e3ba5d8eaa6 100644 --- a/tests/posix/common/CMakeLists.txt +++ b/tests/posix/common/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(posix_common) diff --git a/tests/posix/eventfd/CMakeLists.txt b/tests/posix/eventfd/CMakeLists.txt index 7851f2b4c04..0840989aca9 100644 --- a/tests/posix/eventfd/CMakeLists.txt +++ b/tests/posix/eventfd/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(eventfd) diff --git a/tests/posix/eventfd_basic/CMakeLists.txt b/tests/posix/eventfd_basic/CMakeLists.txt index 15a9b786456..81b368c6b61 100644 --- a/tests/posix/eventfd_basic/CMakeLists.txt +++ b/tests/posix/eventfd_basic/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(eventfd_basic) diff --git a/tests/posix/fs/CMakeLists.txt b/tests/posix/fs/CMakeLists.txt index a5b7a735b4e..971c9f53769 100644 --- a/tests/posix/fs/CMakeLists.txt +++ b/tests/posix/fs/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fs) diff --git a/tests/subsys/canbus/frame/CMakeLists.txt b/tests/subsys/canbus/frame/CMakeLists.txt index fda306f9bef..d405d213045 100644 --- a/tests/subsys/canbus/frame/CMakeLists.txt +++ b/tests/subsys/canbus/frame/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(can_frame) diff --git a/tests/subsys/canbus/isotp/conformance/CMakeLists.txt b/tests/subsys/canbus/isotp/conformance/CMakeLists.txt index ae5c07152a9..635c696edf9 100644 --- a/tests/subsys/canbus/isotp/conformance/CMakeLists.txt +++ b/tests/subsys/canbus/isotp/conformance/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(integration) diff --git a/tests/subsys/canbus/isotp/implementation/CMakeLists.txt b/tests/subsys/canbus/isotp/implementation/CMakeLists.txt index ae5c07152a9..635c696edf9 100644 --- a/tests/subsys/canbus/isotp/implementation/CMakeLists.txt +++ b/tests/subsys/canbus/isotp/implementation/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(integration) diff --git a/tests/subsys/cpp/cxx/CMakeLists.txt b/tests/subsys/cpp/cxx/CMakeLists.txt index 48c062cc4a2..abfa51a2772 100644 --- a/tests/subsys/cpp/cxx/CMakeLists.txt +++ b/tests/subsys/cpp/cxx/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cpp) diff --git a/tests/subsys/cpp/libcxx/CMakeLists.txt b/tests/subsys/cpp/libcxx/CMakeLists.txt index 48c062cc4a2..abfa51a2772 100644 --- a/tests/subsys/cpp/libcxx/CMakeLists.txt +++ b/tests/subsys/cpp/libcxx/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cpp) diff --git a/tests/subsys/debug/coredump/CMakeLists.txt b/tests/subsys/debug/coredump/CMakeLists.txt index 3e3d0e8149e..ecb7d24bb8f 100644 --- a/tests/subsys/debug/coredump/CMakeLists.txt +++ b/tests/subsys/debug/coredump/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hello_world) diff --git a/tests/subsys/debug/coredump_backends/CMakeLists.txt b/tests/subsys/debug/coredump_backends/CMakeLists.txt index 3e3d0e8149e..ecb7d24bb8f 100644 --- a/tests/subsys/debug/coredump_backends/CMakeLists.txt +++ b/tests/subsys/debug/coredump_backends/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(hello_world) diff --git a/tests/subsys/dfu/img_util/CMakeLists.txt b/tests/subsys/dfu/img_util/CMakeLists.txt index 86b0f209087..d021cb9e3f3 100644 --- a/tests/subsys/dfu/img_util/CMakeLists.txt +++ b/tests/subsys/dfu/img_util/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(img_util) diff --git a/tests/subsys/dfu/mcuboot/CMakeLists.txt b/tests/subsys/dfu/mcuboot/CMakeLists.txt index 5d23bbcfc9b..756f3c61c0b 100644 --- a/tests/subsys/dfu/mcuboot/CMakeLists.txt +++ b/tests/subsys/dfu/mcuboot/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mcuboot) diff --git a/tests/subsys/dfu/mcuboot_multi/CMakeLists.txt b/tests/subsys/dfu/mcuboot_multi/CMakeLists.txt index 5d23bbcfc9b..756f3c61c0b 100644 --- a/tests/subsys/dfu/mcuboot_multi/CMakeLists.txt +++ b/tests/subsys/dfu/mcuboot_multi/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(mcuboot) diff --git a/tests/subsys/edac/ibecc/CMakeLists.txt b/tests/subsys/edac/ibecc/CMakeLists.txt index ece883ea238..251fe7dbe87 100644 --- a/tests/subsys/edac/ibecc/CMakeLists.txt +++ b/tests/subsys/edac/ibecc/CMakeLists.txt @@ -1,6 +1,6 @@ #SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(test_ibecc) diff --git a/tests/subsys/fs/fat_fs_api/CMakeLists.txt b/tests/subsys/fs/fat_fs_api/CMakeLists.txt index 0fa9aa4350b..dbe487edf6f 100644 --- a/tests/subsys/fs/fat_fs_api/CMakeLists.txt +++ b/tests/subsys/fs/fat_fs_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fat_fs_api) diff --git a/tests/subsys/fs/fat_fs_dual_drive/CMakeLists.txt b/tests/subsys/fs/fat_fs_dual_drive/CMakeLists.txt index 3687071af5e..7c0ccd0a751 100644 --- a/tests/subsys/fs/fat_fs_dual_drive/CMakeLists.txt +++ b/tests/subsys/fs/fat_fs_dual_drive/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fat_fs_dual_drive) diff --git a/tests/subsys/fs/fcb/CMakeLists.txt b/tests/subsys/fs/fcb/CMakeLists.txt index 59f33b30c01..6b11305af38 100644 --- a/tests/subsys/fs/fcb/CMakeLists.txt +++ b/tests/subsys/fs/fcb/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fs_fcb) diff --git a/tests/subsys/fs/fs_api/CMakeLists.txt b/tests/subsys/fs/fs_api/CMakeLists.txt index 914311a222d..86408de910e 100644 --- a/tests/subsys/fs/fs_api/CMakeLists.txt +++ b/tests/subsys/fs/fs_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(fs_api) diff --git a/tests/subsys/fs/littlefs/CMakeLists.txt b/tests/subsys/fs/littlefs/CMakeLists.txt index 5b414f678ce..ccba742d186 100644 --- a/tests/subsys/fs/littlefs/CMakeLists.txt +++ b/tests/subsys/fs/littlefs/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(littlefs) diff --git a/tests/subsys/fs/multi-fs/CMakeLists.txt b/tests/subsys/fs/multi-fs/CMakeLists.txt index 4de784fbf04..2dfe6545c10 100644 --- a/tests/subsys/fs/multi-fs/CMakeLists.txt +++ b/tests/subsys/fs/multi-fs/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(multi-fs) diff --git a/tests/subsys/fs/nvs/CMakeLists.txt b/tests/subsys/fs/nvs/CMakeLists.txt index cd11994f367..9b87e6a665f 100644 --- a/tests/subsys/fs/nvs/CMakeLists.txt +++ b/tests/subsys/fs/nvs/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fs_nvs) diff --git a/tests/subsys/jwt/CMakeLists.txt b/tests/subsys/jwt/CMakeLists.txt index fa4df761e0e..7bfbeb9d416 100644 --- a/tests/subsys/jwt/CMakeLists.txt +++ b/tests/subsys/jwt/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(jwt) diff --git a/tests/subsys/logging/log_api/CMakeLists.txt b/tests/subsys/logging/log_api/CMakeLists.txt index f38bca2c429..4b8f7f7ad3b 100644 --- a/tests/subsys/logging/log_api/CMakeLists.txt +++ b/tests/subsys/logging/log_api/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(log_core) diff --git a/tests/subsys/logging/log_backend_fs/CMakeLists.txt b/tests/subsys/logging/log_backend_fs/CMakeLists.txt index 41f970964d8..008ec7b354e 100644 --- a/tests/subsys/logging/log_backend_fs/CMakeLists.txt +++ b/tests/subsys/logging/log_backend_fs/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(log_backend_fs_test) diff --git a/tests/subsys/logging/log_benchmark/CMakeLists.txt b/tests/subsys/logging/log_benchmark/CMakeLists.txt index 52e8600940e..fd69c3044c0 100644 --- a/tests/subsys/logging/log_benchmark/CMakeLists.txt +++ b/tests/subsys/logging/log_benchmark/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(log_benchmark) diff --git a/tests/subsys/logging/log_core/CMakeLists.txt b/tests/subsys/logging/log_core/CMakeLists.txt index 47b122e73e6..681f641e5ec 100644 --- a/tests/subsys/logging/log_core/CMakeLists.txt +++ b/tests/subsys/logging/log_core/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(log_core) diff --git a/tests/subsys/logging/log_core_additional/CMakeLists.txt b/tests/subsys/logging/log_core_additional/CMakeLists.txt index 7432ffd5728..22be5a9a306 100644 --- a/tests/subsys/logging/log_core_additional/CMakeLists.txt +++ b/tests/subsys/logging/log_core_additional/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(log_core_additional) diff --git a/tests/subsys/logging/log_immediate/CMakeLists.txt b/tests/subsys/logging/log_immediate/CMakeLists.txt index 7223232cc21..653d784a204 100644 --- a/tests/subsys/logging/log_immediate/CMakeLists.txt +++ b/tests/subsys/logging/log_immediate/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(log_immediate_test) diff --git a/tests/subsys/logging/log_list/CMakeLists.txt b/tests/subsys/logging/log_list/CMakeLists.txt index f089464768d..1830f4f2819 100644 --- a/tests/subsys/logging/log_list/CMakeLists.txt +++ b/tests/subsys/logging/log_list/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(log_list) diff --git a/tests/subsys/logging/log_msg/CMakeLists.txt b/tests/subsys/logging/log_msg/CMakeLists.txt index 6696209ea54..85e39714ba6 100644 --- a/tests/subsys/logging/log_msg/CMakeLists.txt +++ b/tests/subsys/logging/log_msg/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(log_msg) diff --git a/tests/subsys/logging/log_msg2/CMakeLists.txt b/tests/subsys/logging/log_msg2/CMakeLists.txt index 622a8263e84..44a54448ef6 100644 --- a/tests/subsys/logging/log_msg2/CMakeLists.txt +++ b/tests/subsys/logging/log_msg2/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(log_msg2) diff --git a/tests/subsys/logging/log_output/CMakeLists.txt b/tests/subsys/logging/log_output/CMakeLists.txt index 663b2017b7d..75ac303dfbc 100644 --- a/tests/subsys/logging/log_output/CMakeLists.txt +++ b/tests/subsys/logging/log_output/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(log_output) diff --git a/tests/subsys/mgmt/ec_host_cmd/CMakeLists.txt b/tests/subsys/mgmt/ec_host_cmd/CMakeLists.txt index ae5c07152a9..635c696edf9 100644 --- a/tests/subsys/mgmt/ec_host_cmd/CMakeLists.txt +++ b/tests/subsys/mgmt/ec_host_cmd/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(integration) diff --git a/tests/subsys/modbus/CMakeLists.txt b/tests/subsys/modbus/CMakeLists.txt index 08a4cf6d770..de99c0df65d 100644 --- a/tests/subsys/modbus/CMakeLists.txt +++ b/tests/subsys/modbus/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) 2020 PHYTEC Messtechnik GmbH # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(test_modbus) diff --git a/tests/subsys/openthread/CMakeLists.txt b/tests/subsys/openthread/CMakeLists.txt index 783fa1e4fd9..aacf91073e6 100644 --- a/tests/subsys/openthread/CMakeLists.txt +++ b/tests/subsys/openthread/CMakeLists.txt @@ -1,5 +1,5 @@ # Boilerplate code, which pulls in the Zephyr build system. -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(openthread_tests) diff --git a/tests/subsys/pm/device_runtime/CMakeLists.txt b/tests/subsys/pm/device_runtime/CMakeLists.txt index 70fd87f6cba..b6eb12994e8 100644 --- a/tests/subsys/pm/device_runtime/CMakeLists.txt +++ b/tests/subsys/pm/device_runtime/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) 2021 Intel Corporation. # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(device_runtime_test) diff --git a/tests/subsys/pm/power_mgmt/CMakeLists.txt b/tests/subsys/pm/power_mgmt/CMakeLists.txt index 17d07bd9be4..5427253cb6b 100644 --- a/tests/subsys/pm/power_mgmt/CMakeLists.txt +++ b/tests/subsys/pm/power_mgmt/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) 2020 Intel Corporation. # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(power_management_test) diff --git a/tests/subsys/pm/power_mgmt_soc/CMakeLists.txt b/tests/subsys/pm/power_mgmt_soc/CMakeLists.txt index e78f9433438..69c4c01ffdb 100644 --- a/tests/subsys/pm/power_mgmt_soc/CMakeLists.txt +++ b/tests/subsys/pm/power_mgmt_soc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(pm_test) diff --git a/tests/subsys/pm/power_states_api/CMakeLists.txt b/tests/subsys/pm/power_states_api/CMakeLists.txt index a39024f408b..4e8711798fa 100644 --- a/tests/subsys/pm/power_states_api/CMakeLists.txt +++ b/tests/subsys/pm/power_states_api/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright (c) 2020 Intel Corporation. # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(pm-states-test) diff --git a/tests/subsys/portability/cmsis_rtos_v1/CMakeLists.txt b/tests/subsys/portability/cmsis_rtos_v1/CMakeLists.txt index 368cbc0919a..f02a4b570e9 100644 --- a/tests/subsys/portability/cmsis_rtos_v1/CMakeLists.txt +++ b/tests/subsys/portability/cmsis_rtos_v1/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_rtos_v1) diff --git a/tests/subsys/portability/cmsis_rtos_v2/CMakeLists.txt b/tests/subsys/portability/cmsis_rtos_v2/CMakeLists.txt index 71ce8eee8c5..3a2b7531ee5 100644 --- a/tests/subsys/portability/cmsis_rtos_v2/CMakeLists.txt +++ b/tests/subsys/portability/cmsis_rtos_v2/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(cmsis_rtos_v2) diff --git a/tests/subsys/settings/fcb/raw/CMakeLists.txt b/tests/subsys/settings/fcb/raw/CMakeLists.txt index 0f8ac0130ac..f3e8e1fbc30 100644 --- a/tests/subsys/settings/fcb/raw/CMakeLists.txt +++ b/tests/subsys/settings/fcb/raw/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(settings_fcb_raw) diff --git a/tests/subsys/settings/fcb_init/CMakeLists.txt b/tests/subsys/settings/fcb_init/CMakeLists.txt index 1d53ebce0ce..efeff7c7f11 100644 --- a/tests/subsys/settings/fcb_init/CMakeLists.txt +++ b/tests/subsys/settings/fcb_init/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(fcb_init) diff --git a/tests/subsys/settings/functional/fcb/CMakeLists.txt b/tests/subsys/settings/functional/fcb/CMakeLists.txt index d867f9a1581..adf60001ed6 100644 --- a/tests/subsys/settings/functional/fcb/CMakeLists.txt +++ b/tests/subsys/settings/functional/fcb/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(functional_fcb) diff --git a/tests/subsys/settings/functional/file/CMakeLists.txt b/tests/subsys/settings/functional/file/CMakeLists.txt index 8f2018a88d4..cea7f742d39 100644 --- a/tests/subsys/settings/functional/file/CMakeLists.txt +++ b/tests/subsys/settings/functional/file/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(functional_file) diff --git a/tests/subsys/settings/functional/nvs/CMakeLists.txt b/tests/subsys/settings/functional/nvs/CMakeLists.txt index cb4ee6c2836..c46683ff176 100644 --- a/tests/subsys/settings/functional/nvs/CMakeLists.txt +++ b/tests/subsys/settings/functional/nvs/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(functional_nvs) diff --git a/tests/subsys/settings/littlefs/base64/CMakeLists.txt b/tests/subsys/settings/littlefs/base64/CMakeLists.txt index a0c6871a6de..9799c3df8e1 100644 --- a/tests/subsys/settings/littlefs/base64/CMakeLists.txt +++ b/tests/subsys/settings/littlefs/base64/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright (c) 2019 Nordic Semiconductor ASA -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(littlefs) diff --git a/tests/subsys/settings/littlefs/raw/CMakeLists.txt b/tests/subsys/settings/littlefs/raw/CMakeLists.txt index 73dd869c495..afdebb881d5 100644 --- a/tests/subsys/settings/littlefs/raw/CMakeLists.txt +++ b/tests/subsys/settings/littlefs/raw/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright (c) 2019 Nordic Semiconductor ASA -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(littlefs_raw) diff --git a/tests/subsys/settings/nvs/raw/CMakeLists.txt b/tests/subsys/settings/nvs/raw/CMakeLists.txt index 19d59a57687..2a6c0bb5ec2 100644 --- a/tests/subsys/settings/nvs/raw/CMakeLists.txt +++ b/tests/subsys/settings/nvs/raw/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(test_settings_nvs_raw) diff --git a/tests/subsys/shell/shell/CMakeLists.txt b/tests/subsys/shell/shell/CMakeLists.txt index c1b649ce76c..a8fae2b9931 100644 --- a/tests/subsys/shell/shell/CMakeLists.txt +++ b/tests/subsys/shell/shell/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(shell) diff --git a/tests/subsys/shell/shell_flash/CMakeLists.txt b/tests/subsys/shell/shell_flash/CMakeLists.txt index 25291ebc49e..626bd79f584 100644 --- a/tests/subsys/shell/shell_flash/CMakeLists.txt +++ b/tests/subsys/shell/shell_flash/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr HINTS $ENV{ZEPHYR_BASE}) project(shell) diff --git a/tests/subsys/shell/shell_history/CMakeLists.txt b/tests/subsys/shell/shell_history/CMakeLists.txt index c1b649ce76c..a8fae2b9931 100644 --- a/tests/subsys/shell/shell_history/CMakeLists.txt +++ b/tests/subsys/shell/shell_history/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(shell) diff --git a/tests/subsys/storage/flash_map/CMakeLists.txt b/tests/subsys/storage/flash_map/CMakeLists.txt index b51ab1d2204..83203675764 100644 --- a/tests/subsys/storage/flash_map/CMakeLists.txt +++ b/tests/subsys/storage/flash_map/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(flash_map) diff --git a/tests/subsys/storage/stream/stream_flash/CMakeLists.txt b/tests/subsys/storage/stream/stream_flash/CMakeLists.txt index ea4657aac6b..10ed929a618 100644 --- a/tests/subsys/storage/stream/stream_flash/CMakeLists.txt +++ b/tests/subsys/storage/stream/stream_flash/CMakeLists.txt @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE) project(stream_flash) diff --git a/tests/subsys/usb/bos/CMakeLists.txt b/tests/subsys/usb/bos/CMakeLists.txt index 88e17c98d66..2cc63a1e1bf 100644 --- a/tests/subsys/usb/bos/CMakeLists.txt +++ b/tests/subsys/usb/bos/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(bos) diff --git a/tests/subsys/usb/desc_sections/CMakeLists.txt b/tests/subsys/usb/desc_sections/CMakeLists.txt index 1a9a511f105..54b8fd4dfe6 100644 --- a/tests/subsys/usb/desc_sections/CMakeLists.txt +++ b/tests/subsys/usb/desc_sections/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(os_desc) diff --git a/tests/subsys/usb/device/CMakeLists.txt b/tests/subsys/usb/device/CMakeLists.txt index b0a0d2293cd..b254048cb1f 100644 --- a/tests/subsys/usb/device/CMakeLists.txt +++ b/tests/subsys/usb/device/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(usb_device_test) diff --git a/tests/subsys/usb/os_desc/CMakeLists.txt b/tests/subsys/usb/os_desc/CMakeLists.txt index 1a9a511f105..54b8fd4dfe6 100644 --- a/tests/subsys/usb/os_desc/CMakeLists.txt +++ b/tests/subsys/usb/os_desc/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(os_desc) diff --git a/tests/ztest/base/CMakeLists.txt b/tests/ztest/base/CMakeLists.txt index e83abd518b8..517b4f0d97f 100644 --- a/tests/ztest/base/CMakeLists.txt +++ b/tests/ztest/base/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if(BOARD STREQUAL unit_testing) list(APPEND SOURCES src/main.c) diff --git a/tests/ztest/busy_sim/CMakeLists.txt b/tests/ztest/busy_sim/CMakeLists.txt index 1ee55b853e8..48828140a54 100644 --- a/tests/ztest/busy_sim/CMakeLists.txt +++ b/tests/ztest/busy_sim/CMakeLists.txt @@ -2,7 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(uart_basic_api) diff --git a/tests/ztest/custom_output/CMakeLists.txt b/tests/ztest/custom_output/CMakeLists.txt index 91820905e7a..2802f30450c 100644 --- a/tests/ztest/custom_output/CMakeLists.txt +++ b/tests/ztest/custom_output/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(integration) diff --git a/tests/ztest/error_hook/CMakeLists.txt b/tests/ztest/error_hook/CMakeLists.txt index 91820905e7a..2802f30450c 100644 --- a/tests/ztest/error_hook/CMakeLists.txt +++ b/tests/ztest/error_hook/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) project(integration) diff --git a/tests/ztest/mock/CMakeLists.txt b/tests/ztest/mock/CMakeLists.txt index aff3868722c..0cc68ce9811 100644 --- a/tests/ztest/mock/CMakeLists.txt +++ b/tests/ztest/mock/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 -cmake_minimum_required(VERSION 3.13.1) +cmake_minimum_required(VERSION 3.20.0) if(BOARD STREQUAL unit_testing) list(APPEND SOURCES src/main.c)