Skip to content

Commit

Permalink
[VL] Fix wrong lib suffix for google_cloud_cpp_storage (#7933)
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILO-HE authored Nov 14, 2024
1 parent 73c0610 commit fc549ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/velox/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ endmacro()

macro(find_gcssdk)
set(CMAKE_FIND_LIBRARY_SUFFIXES_BCK ${CMAKE_FIND_LIBRARY_SUFFIXES})
set(CMAKE_FIND_LIBRARY_SUFFIXES ".so")
find_package(google_cloud_cpp_storage REQUIRED)
set(CMAKE_FIND_LIBRARY_SUFFIXES ".a")
find_package(google_cloud_cpp_storage CONFIG 2.22.0 REQUIRED)
set(CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES_BCK})
endmacro()

Expand Down

0 comments on commit fc549ee

Please sign in to comment.