Commits


Sutou Kouhei authored and GitHub committed 77263352843
ARROW-17394: [C++][Parquet] Fix parquet_static dependencies (#13863) parquet_static needs Thrift because cpp/src/parquet/thrift_internal.h uses Thrift. See also: https://github.com/microsoft/vcpkg/issues/22552#issuecomment-1211341648 We can test this by the following command lines: $ cd cpp/examples/parquet/parquet_arrow $ export Arrow_DIR=${ARROW_INSTALL_PREFIX}/lib/cmake/arrow $ export Parquet_DIR=${ARROW_INSTALL_PREFIX}/lib/cmake/arrow $ cmake -S . -B build -DPARQUET_LINK_SHARED=OFF $ cmake --build build --verbose I also noticed that OpenTelemetry related dependencies are also missed because I usually use -DARROW_WITH_OPENTELEMETRY=ON option for Apache Arrow development. The problem is also fixed in this. Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>