tree: 1fc1b751c9371af9bfdb7d79f3f53673327d4ddd [path history] [tgz]
  1. src/
  2. subprojects/
  3. meson.build
  4. README.md
examples/meson-minimal/README.md

Minimal Meson Example

This folder contains a meson project that links to its own copy of nanoarrow using a subproject.

To build the project:

git clone https://github.com/apache/arrow-nanoarrow.git
cd arrow-nanoarrow/examples/meson-minimal
meson setup builddir && cd builddir
meson compile

After building, you can run the app from the build directory. The app parses command line arguments into an int32 array and prints out the resulting length (or any error encountered whilst building the array).

./example_meson_minimal_app
# 1
# 2
# 3