summaryrefslogtreecommitdiff
path: root/subprojects/pybind11.wrap
blob: e8037a5dfb489f4c301c691a695e6daf35dacf6b (plain)
1
2
3
4
5
6
7
8
9
[wrap-git]
url = https://github.com/pybind/pybind11.git
# This is the head of 'smart_holder' branch
revision = aebdf00cd060b871c5a1e0c2cf4a333503dd0431
depth = 1
patch_directory = pybind11

[provide]
pybind11 = pybind11_dep
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
# SPDX-License-Identifier: CC0-1.0

android_deps = [
    dependency('libexif', required : get_option('android')),
    dependency('libjpeg', required : get_option('android')),
]

android_enabled = true

foreach dep : android_deps
    if not dep.found()
        android_enabled = false
        subdir_done()
    endif
endforeach

android_hal_sources = files([
    'camera3_hal.cpp',
    'camera_hal_manager.cpp',
    'camera_device.cpp',
    'camera_metadata.cpp',
    'camera_ops.cpp',
    'camera_stream.cpp',
    'camera_worker.cpp',
    'jpeg/encoder_libjpeg.cpp',
    'jpeg/exif.cpp',
    'jpeg/post_processor_jpeg.cpp',
    'jpeg/thumbnailer.cpp',
])

android_camera_metadata_sources = files([
    'metadata/camera_metadata.c',
])

android_camera_metadata = static_library('camera_metadata',
                                         android_camera_metadata_sources,
                                         c_args : '-Wno-shadow',
                                         include_directories : android_includes)