bump cmake minimum version to 3.13

This commit is contained in:
graham sanderson 2021-01-31 15:31:40 -06:00 committed by Graham Sanderson
parent b8c17354e4
commit f58c6d9cc9
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.12) cmake_minimum_required(VERSION 3.13)
if (NOT TARGET _pico_sdk_inclusion_marker) if (NOT TARGET _pico_sdk_inclusion_marker)
add_library(_pico_sdk_inclusion_marker INTERFACE) add_library(_pico_sdk_inclusion_marker INTERFACE)
include(pico_sdk_init.cmake) include(pico_sdk_init.cmake)

View File

@ -36,7 +36,7 @@ See [pico-examples](https://github.com/raspberrypi/pico-examples) for example co
These instructions are exteremly terse, and Linux based only. For detailed steps, These instructions are exteremly terse, and Linux based only. For detailed steps,
instructions for other platforms, and just in general, we recommend you see [Raspberry Pi Pico C/C++ SDK](https://rptl.io/pico-c-sdk) instructions for other platforms, and just in general, we recommend you see [Raspberry Pi Pico C/C++ SDK](https://rptl.io/pico-c-sdk)
1. Install CMake (at least version 3.12), and GCC cross compiler 1. Install CMake (at least version 3.13), and GCC cross compiler
``` ```
sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi
``` ```
@ -50,7 +50,7 @@ instructions for other platforms, and just in general, we recommend you see [Ras
3. Setup a `CMakeLists.txt` like: 3. Setup a `CMakeLists.txt` like:
```cmake ```cmake
cmake_minimum_required(VERSION 3.12) cmake_minimum_required(VERSION 3.13)
# initialize the SDK based on PICO_SDK_PATH # initialize the SDK based on PICO_SDK_PATH
# note: this must happen before project() # note: this must happen before project()
@ -70,7 +70,7 @@ instructions for other platforms, and just in general, we recommend you see [Ras
1. Setup a `CMakeLists.txt` like: 1. Setup a `CMakeLists.txt` like:
```cmake ```cmake
cmake_minimum_required(VERSION 3.12) cmake_minimum_required(VERSION 3.13)
# initialize pico-sdk from submodule # initialize pico-sdk from submodule
# note: this must happen before project() # note: this must happen before project()
@ -91,7 +91,7 @@ instructions for other platforms, and just in general, we recommend you see [Ras
1. Setup a `CMakeLists.txt` like: 1. Setup a `CMakeLists.txt` like:
```cmake ```cmake
cmake_minimum_required(VERSION 3.12) cmake_minimum_required(VERSION 3.13)
# initialize pico-sdk from GIT # initialize pico-sdk from GIT
# (note this can come from environment, CMake cache etc) # (note this can come from environment, CMake cache etc)