Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Make sure all dependencies are installed for your distribution. All of our suppo
- autoconf
- unzip
- zip
- cmake (>= 3.16.0)
- cmake (>= 3.21)
- build-essential (gcc >= 4.4.7, g++, make)
- perl (perl-core, perl-IPC-Cmd)
- tar
Expand All @@ -42,10 +42,10 @@ Using the pre-defined [devops/docker/ubuntu-24.04-amd64/Dockerfile](devops/docke

```bash
sudo apt -y update && sudo apt-get -y install software-properties-common
sudo apt -y update && sudo apt-get -y install build-essential cmake git pkg-config tar unzip wget zip
sudo apt -y update && sudo apt-get -y install build-essential cmake git curl pkg-config tar unzip wget zip
```

Verify that CMake is at least version 3.16.0 and gcc is at least version 4.4.7.
Verify that CMake is at least version 3.21 and gcc is at least version 4.4.7.

```bash
cmake --version
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if (NOT DEFINED CMAKE_TOOLCHAIN_FILE)
endif()
endif()

cmake_minimum_required(VERSION 3.16)
cmake_minimum_required(VERSION 3.21)
project(osconfig)

set (CMAKE_C_STANDARD 11)
Expand Down
2 changes: 1 addition & 1 deletion src/common/telemetry/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

cmake_minimum_required(VERSION 3.16)
cmake_minimum_required(VERSION 3.21)
project(telemetry)

if(BUILD_EXTERNAL)
Expand Down
Loading