Skip to content

Commit 8786234

Browse files
authored
Merge pull request #235 from robertmaynard/update_cmake_version
Document that minimum required CMake version is now 3.23.1
2 parents 1addcf9 + 9fa0868 commit 8786234

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#=============================================================================
16-
cmake_minimum_required(VERSION 3.18 FATAL_ERROR)
16+
cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)
1717

1818
if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/CUCO_RAPIDS.cmake)
1919
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.10/RAPIDS.cmake

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ We recommend using [CMake Package Manager (CPM)](https://github.com/TheLartians/
2828
With CPM, getting `cuCollections` is easy:
2929

3030
```
31-
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
31+
cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)
3232
3333
include(path/to/CPM.cmake)
3434

benchmarks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#=============================================================================
16-
cmake_minimum_required(VERSION 3.18 FATAL_ERROR)
16+
cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)
1717

1818
CPMAddPackage(
1919
NAME benchmark

ci/gpu/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ nvidia-smi
3232

3333
gpuci_logger "Install Dependencies"
3434
. /opt/conda/etc/profile.d/conda.sh
35-
conda create -y -n cuda -c nvidia -c conda-forge "cudatoolkit=${CUDA_VER}" "cmake>=3.18.*"
35+
conda create -y -n cuda -c nvidia -c conda-forge "cudatoolkit=${CUDA_VER}" "cmake>=3.23.1"
3636
conda activate cuda
3737

3838
gpuci_logger "Check versions"

examples/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#=============================================================================
16-
cmake_minimum_required(VERSION 3.18 FATAL_ERROR)
16+
cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)
1717

1818
###################################################################################################
1919
# - compiler function -----------------------------------------------------------------------------

tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#=============================================================================
16-
cmake_minimum_required(VERSION 3.18 FATAL_ERROR)
16+
cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)
1717

1818
include(CTest)
1919

0 commit comments

Comments
 (0)