summaryrefslogtreecommitdiff
path: root/src/android/metadata
AgeCommit message (Expand)Author
2019-08-12android: metadata: Add SPDX tagJacopo Mondi
2019-08-12android: Add camera metadata libraryJacopo Mondi
='#n8'>8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
# SPDX-License-Identifier: CC0-1.0

libevent = dependency('libevent_pthreads', required : false)

if not libevent.found()
    warning('libevent_pthreads not found, \'cam\' application will not be compiled')
    subdir_done()
endif

cam_sources = files([
    'buffer_writer.cpp',
    'capture.cpp',
    'event_loop.cpp',
    'main.cpp',
    'options.cpp',
    'stream_options.cpp',
])

cam  = executable('cam', cam_sources,
                  dependencies : [
                      libatomic,
                      libcamera_dep,
                      libevent,
                  ],
                  install : true)