Skip to content

Commit 94c2490

Browse files
author
Felipe Torrezan
authored
Update README.md
- Move note about version in which the tutorial works to the #builing-a-basic-cmake-project.
1 parent 64c81f9 commit 94c2490

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ CMake is an open-source, cross-platform family of tools maintained and supported
66

77
This tutorial offers a short introduction for those seeking information on how to start using the IAR C/C++ Compiler together with CMake from the command line. For diving deeper, consider visiting the [__cmake-tutorial wiki__](https://github.com/iarsystems/cmake-tutorial/wiki).
88

9-
>[!NOTE]
10-
>While this guide is based on the IAR Build Tools for Arm (CXARM) 9.60.4 on Linux, it should work with other supported IAR products with no or minimal changes.
11-
12-
139

1410
## Prerequisites
1511
Before you begin, you will need to download and install the IAR product, CMake and then clone this repository.
@@ -27,6 +23,9 @@ Before you begin, you will need to download and install the IAR product, CMake a
2723
3) Clone this repository to your computer. For more information, see ["Cloning a repository"](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository).
2824

2925
## Building a Basic CMake Project
26+
>[!NOTE]
27+
>While this guide is based on the IAR Build Tools for Arm (CXARM) 9.60.4 on Linux, it should work with other supported IAR products with no or minimal changes.
28+
3029
The most basic CMake project is an executable built from a single source code file. For simple projects like this, a `CMakeLists.txt` file with about half dozen of commands is all that is required.
3130

3231
Any project's topmost `CMakeLists.txt` must start by specifying a minimum CMake version using the [`cmake_minimum_required()`][url-help-cmake_minimum_required] command. This establishes policy settings and ensures that CMake functions used in the project are run with a compatible version of CMake.

0 commit comments

Comments
 (0)