@@ -156,15 +156,15 @@ into an executable linked with the Arrow C++ shared library:
156
156
157
157
.. code-block :: meson
158
158
159
- project('my-example-project', 'cpp')
159
+ project('my-example-project', 'cpp')
160
160
161
- arrow_dep = dependency('arrow')
161
+ arrow_dep = dependency('arrow')
162
162
163
- executable(
164
- 'my_example',
165
- sources: ['my_example.cc'],
166
- dependencies: [arrow_dep],
167
- )
163
+ executable(
164
+ 'my_example',
165
+ sources: ['my_example.cc'],
166
+ dependencies: [arrow_dep],
167
+ )
168
168
169
169
To setup and compile, run the following commands from your project root:
170
170
@@ -211,18 +211,18 @@ Meson to build the compute library while compiling a local copy of Arrow:
211
211
212
212
.. code-block :: meson
213
213
214
- project('my-example-project', 'cpp')
214
+ project('my-example-project', 'cpp')
215
215
216
- arrow_compute_dep = dependency(
217
- 'arrow-compute',
218
- default_options: ['compute=enabled'],
219
- )
216
+ arrow_compute_dep = dependency(
217
+ 'arrow-compute',
218
+ default_options: ['compute=enabled'],
219
+ )
220
220
221
- executable(
222
- 'my_example',
223
- sources: ['my_example.cc'],
224
- dependencies: [arrow_compute_dep],
225
- )
221
+ executable(
222
+ 'my_example',
223
+ sources: ['my_example.cc'],
224
+ dependencies: [arrow_compute_dep],
225
+ )
226
226
227
227
pkg-config
228
228
==========
0 commit comments