|
| 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 | +iceberg_rest_sources = files('rest_catalog.cc') |
| 19 | +# cpr does not export symbols, so on Windows it must |
| 20 | +# be used as a static lib |
| 21 | +cpr_needs_static = ( |
| 22 | + get_option('default_library') == 'static' or |
| 23 | + host_machine.system() == 'windows' |
| 24 | +) |
| 25 | +cpr_dep = dependency('cpr', static: cpr_needs_static) |
| 26 | + |
| 27 | +iceberg_rest_build_deps = [iceberg_dep, cpr_dep] |
| 28 | +iceberg_rest_lib = library( |
| 29 | + 'iceberg_rest', |
| 30 | + sources: iceberg_rest_sources, |
| 31 | + dependencies: iceberg_rest_build_deps, |
| 32 | + gnu_symbol_visibility: 'hidden', |
| 33 | + cpp_shared_args: ['-DICEBERG_REST_EXPORTING'], |
| 34 | + cpp_static_args: ['-DICEBERG_REST_STATIC'], |
| 35 | +) |
| 36 | + |
| 37 | +iceberg_rest_compile_args = [] |
| 38 | +if get_option('default_library') == 'static' |
| 39 | + iceberg_rest_compile_args += ['-DICEBERG_REST_STATIC'] |
| 40 | +endif |
| 41 | +iceberg_rest_dep = declare_dependency( |
| 42 | + link_with: [iceberg_rest_lib], |
| 43 | + dependencies: iceberg_rest_build_deps, |
| 44 | + compile_args: iceberg_rest_compile_args, |
| 45 | +) |
| 46 | +meson.override_dependency('iceberg-rest', iceberg_rest_dep) |
| 47 | +pkg.generate(iceberg_rest_lib) |
| 48 | + |
| 49 | +install_headers(['rest_catalog.h'], subdir: 'iceberg/catalog/rest') |
0 commit comments