Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/iceberg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ if(ICEBERG_BUILD_BUNDLE)
set(ICEBERG_BUNDLE_SOURCES
arrow/arrow_fs_file_io.cc
avro/avro_data_util.cc
avro/avro_direct_decoder.cc
avro/avro_reader.cc
avro/avro_writer.cc
avro/avro_register.cc
Expand Down
6 changes: 6 additions & 0 deletions src/iceberg/avro/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,9 @@
# under the License.

iceberg_install_all_headers(iceberg/avro)

# avro_scan benchmark executable
add_executable(avro_scan avro_scan.cc)
target_link_libraries(avro_scan PRIVATE iceberg_bundle_static)
set_target_properties(avro_scan PROPERTIES RUNTIME_OUTPUT_DIRECTORY
"${CMAKE_BINARY_DIR}/src/iceberg/avro")
Loading
Loading