From 307cbcf8cd5245ba0b551a61adfffeedca73a3ac Mon Sep 17 00:00:00 2001 From: Jacob Wujciak-Jens Date: Tue, 28 May 2024 20:28:26 +0200 Subject: [PATCH] format --- CMake/VeloxUtils.cmake | 1 - velox/connectors/hive/storage_adapters/abfs/CMakeLists.txt | 2 +- velox/connectors/hive/storage_adapters/hdfs/CMakeLists.txt | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CMake/VeloxUtils.cmake b/CMake/VeloxUtils.cmake index 1c05494a2c0ed..8078e485a68a2 100644 --- a/CMake/VeloxUtils.cmake +++ b/CMake/VeloxUtils.cmake @@ -119,7 +119,6 @@ function(velox_compile_definitions TARGET) endif() endfunction() - function(velox_sources TARGET) if(VELOX_MONO_LIBRARY) target_sources(velox ${ARGN}) diff --git a/velox/connectors/hive/storage_adapters/abfs/CMakeLists.txt b/velox/connectors/hive/storage_adapters/abfs/CMakeLists.txt index 9303c68ea8271..1a62954a764f7 100644 --- a/velox/connectors/hive/storage_adapters/abfs/CMakeLists.txt +++ b/velox/connectors/hive/storage_adapters/abfs/CMakeLists.txt @@ -18,7 +18,7 @@ velox_add_library(velox_abfs RegisterAbfsFileSystem.cpp) if(VELOX_ENABLE_ABFS) velox_sources(velox_abfs PRIVATE AbfsFileSystem.cpp AbfsUtils.cpp - AbfsWriteFile.cpp) + AbfsWriteFile.cpp) velox_link_libraries( velox_abfs PUBLIC diff --git a/velox/connectors/hive/storage_adapters/hdfs/CMakeLists.txt b/velox/connectors/hive/storage_adapters/hdfs/CMakeLists.txt index 31291228afd1b..bbb4953badf5d 100644 --- a/velox/connectors/hive/storage_adapters/hdfs/CMakeLists.txt +++ b/velox/connectors/hive/storage_adapters/hdfs/CMakeLists.txt @@ -18,7 +18,7 @@ velox_add_library(velox_hdfs RegisterHdfsFileSystem.cpp) if(VELOX_ENABLE_HDFS) velox_sources(velox_hdfs PRIVATE HdfsFileSystem.cpp HdfsReadFile.cpp - HdfsWriteFile.cpp) + HdfsWriteFile.cpp) velox_link_libraries(velox_hdfs Folly::folly ${LIBHDFS3} xsimd) if(${VELOX_BUILD_TESTING})