Skip to content

Commit efd6c72

Browse files
authored
chore: Set required cmake to 3.28 (#46)
## What ❔ * Seems that cmake 3.28 is enough - and it is used by 12.6.0-devel-ubuntu24.04. ## Why ❔ * originally we had cmake 3.24 (but it didn't pass c++20 flags correctly) * I've manually updated our ubuntu 22 - to install cmake 3.30 - and everything worked * but it seems that it is working fine on ubuntu 24 - with cmake 3.28 - so let's set this as minimum version.
1 parent 96d229a commit efd6c72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gpu_prover/native/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
cmake_minimum_required(VERSION 3.30)
2-
# Cmake must be at least 3.30 - the earlier one didn't pass cuda_standard properly.
1+
cmake_minimum_required(VERSION 3.28)
2+
# Cmake must be at least 3.28 - the earlier one didn't pass cuda_standard properly.
33
project(gpu_prover_native)
44
enable_language(CUDA)
55
if ((NOT DEFINED CMAKE_CUDA_ARCHITECTURES) OR (CMAKE_CUDA_ARCHITECTURES STREQUAL ""))

0 commit comments

Comments
 (0)