|
| 1 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 2 | +# or more contributor license agreements. See the NOTICE file |
| 3 | +# distributed with this work for additional information |
| 4 | +# regarding copyright ownership. The ASF licenses this file |
| 5 | +# to you under the Apache License, Version 2.0 (the |
| 6 | +# "License"); you may not use this file except in compliance |
| 7 | +# with the License. You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, |
| 12 | +# software distributed under the License is distributed on an |
| 13 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | +# KIND, either express or implied. See the License for the |
| 15 | +# specific language governing permissions and limitations |
| 16 | +# under the License. |
| 17 | + |
| 18 | +project( |
| 19 | + 'adbc_driver_manager', |
| 20 | + 'cython', |
| 21 | + version: run_command( |
| 22 | + ['python', 'adbc_driver_manager/_version.py'], |
| 23 | + check: true, |
| 24 | + ).stdout().replace( |
| 25 | + 'Version:', |
| 26 | + '', |
| 27 | + ).strip(), |
| 28 | + license: 'Apache-2.0', |
| 29 | + meson_version: '>=1.2.1', |
| 30 | + default_options: ['buildtype=release', 'warning_level=2', 'cpp_std=c++17'], |
| 31 | +) |
| 32 | + |
| 33 | +backward_dep = dependency('backward-cpp') |
| 34 | +# hack until https://github.com/mesonbuild/wrapdb/pull/2072 |
| 35 | +backward_incdir = include_directories('subprojects/backward-cpp-1.6') |
| 36 | + |
| 37 | +adbc_driver_manager_dep = dependency( |
| 38 | + 'adbc-driver-manager', |
| 39 | + fallback: ['arrow-adbc', 'adbc_driver_manager_dep'], |
| 40 | + default_options: ['driver_manager=enabled'], |
| 41 | +) |
| 42 | +py = import('python').find_installation(pure: false) |
| 43 | + |
| 44 | +cython_args = [] |
| 45 | +if get_option('buildtype') in ['debug', 'debugoptimized'] |
| 46 | + cython_args += ['--gdb'] |
| 47 | +endif |
| 48 | + |
| 49 | +subdir('adbc_driver_manager') |
| 50 | + |
| 51 | +meson.add_dist_script(py, files('scripts/remove_third_party_wraps.py')) |
0 commit comments