Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILO-HE committed Aug 7, 2024
1 parent a1d7ad0 commit 6543e9d
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions cpp/velox/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -316,9 +316,8 @@ if(BUILD_TESTS)
"${VELOX_COMPONENTS_PATH}/exec/tests/utils/libvelox_exec_test_lib.a")
target_link_libraries(
facebook::velox::test
INTERFACE facebook::velox::vector_test
facebook::velox::dwio_common_test facebook::velox::file_test
facebook::velox::temp_path)
INTERFACE facebook::velox::vector_test facebook::velox::dwio_common_test
facebook::velox::file_test facebook::velox::temp_path)

target_link_libraries(velox PUBLIC facebook::velox::test)
endif()
Expand Down Expand Up @@ -362,6 +361,18 @@ if(BUILD_BENCHMARKS)
add_subdirectory(benchmarks)
endif()

if(ENABLE_HDFS)
add_definitions(-DENABLE_HDFS)
endif()

if(ENABLE_S3)
add_definitions(-DENABLE_S3)
endif()

if(ENABLE_GCS)
add_definitions(-DENABLE_GCS)
endif()

if(BUILD_EXAMPLES)
add_subdirectory(udf/examples)
endif()
Expand Down

0 comments on commit 6543e9d

Please sign in to comment.