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
6 changes: 6 additions & 0 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,12 @@ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/../LICENSE.txt

install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/gdb_arrow.py DESTINATION "${ARROW_GDB_DIR}")

# Install generated Thrift and FlatBuffers headers
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/src/generated/
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/generated"
FILES_MATCHING
PATTERN "*.h")

#
# Validate and print out Arrow configuration options
#
Expand Down
1 change: 1 addition & 0 deletions cpp/build-support/update-flatbuffers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ FLATC="flatc --cpp --cpp-std c++11 --scoped-enums"
OUT_DIR="$SOURCE_DIR/generated"
FILES=($(find $FORMAT_DIR -name '*.fbs'))
FILES+=("$SOURCE_DIR/arrow/ipc/feather.fbs")
FILES+=("$SOURCE_DIR/parquet/parquet3.fbs")

$FLATC -o "$OUT_DIR" "${FILES[@]}"
Loading