Skip to content

Bump minimum CMake version #194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.7.2)
cmake_minimum_required(VERSION 3.16.0)

add_subdirectory(libutils)
add_subdirectory(libplatsupport)
Expand Down
2 changes: 1 addition & 1 deletion libcpio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.7.2)
cmake_minimum_required(VERSION 3.16.0)

project(libcpio C)

Expand Down
2 changes: 1 addition & 1 deletion libelf/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.7.2)
cmake_minimum_required(VERSION 3.16.0)

project(libelf C)

Expand Down
2 changes: 1 addition & 1 deletion libethdrivers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.8.2)
cmake_minimum_required(VERSION 3.16.0)

project(libethdrivers C)

Expand Down
2 changes: 1 addition & 1 deletion libfdt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.7.2)
cmake_minimum_required(VERSION 3.16.0)

project(libfdt C)

Expand Down
2 changes: 1 addition & 1 deletion liblwip/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.8.2)
cmake_minimum_required(VERSION 3.16.0)
project(liblwip C)

set(configure_string "")
Expand Down
2 changes: 1 addition & 1 deletion liblwip/lwip_helpers.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.8.2)
cmake_minimum_required(VERSION 3.16.0)

function(AddLWIPConfiguration include_dir)
if(TARGET liblwip_config)
Expand Down
2 changes: 1 addition & 1 deletion libpci/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.7.2)
cmake_minimum_required(VERSION 3.16.0)

project(libpci C)

Expand Down
2 changes: 1 addition & 1 deletion libpicotcp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.7.2)
cmake_minimum_required(VERSION 3.16.0)
project(libpicotcp NONE)

include(external-project-helpers)
Expand Down
2 changes: 1 addition & 1 deletion libplatsupport/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.7.2)
cmake_minimum_required(VERSION 3.16.0)

project(libplatsupport C)

Expand Down
2 changes: 1 addition & 1 deletion libplatsupport/tools/helpers.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.8.2)
cmake_minimum_required(VERSION 3.16.0)

function(get_device_list var device_type platform)
get_filename_component(platsupport_tools ${PLATSUPPORT_HELPERS} DIRECTORY)
Expand Down
2 changes: 1 addition & 1 deletion libsatadrivers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# SPDX-License-Identifier: BSD-2-Clause
#
cmake_minimum_required(VERSION 3.7.2)
cmake_minimum_required(VERSION 3.16.0)

project(libsatadrivers C)

Expand Down
2 changes: 1 addition & 1 deletion libutils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.7.2)
cmake_minimum_required(VERSION 3.16.0)

project(libutils C)

Expand Down
2 changes: 1 addition & 1 deletion libvirtio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
#

cmake_minimum_required(VERSION 3.7.2)
cmake_minimum_required(VERSION 3.16.0)

project(libvirtio NONE)

Expand Down
Loading