Skip to content

Commit

Permalink
fix Arrow CMake file (#7358)
Browse files Browse the repository at this point in the history
With the latest cmake (built from head), it crashes with `-DARROW_STATIC_LIB=ON`. Adding `cmake_minimum_required` to match what's in the top-level file.

Authors:
  - Rong Ou (@rongou)

Approvers:
  - Mark Harris (@harrism)
  - Jason Lowe (@jlowe)
  - Keith Kraus (@kkraus14)

URL: #7358
  • Loading branch information
rongou authored Feb 10, 2021
1 parent f7b3f75 commit efcd52d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cpp/cmake/Templates/Arrow.CMakeLists.txt.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#=============================================================================
# Copyright (c) 2018-2020, NVIDIA CORPORATION.
# Copyright (c) 2018-2021, NVIDIA CORPORATION.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -14,6 +14,8 @@
# limitations under the License.
#=============================================================================

cmake_minimum_required(VERSION 3.14...3.17 FATAL_ERROR)

project(cudf-Arrow)

include(ExternalProject)
Expand Down

0 comments on commit efcd52d

Please sign in to comment.