File: meson.build

package info (click to toggle)
qcom-phone-utils 0.4.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212 kB
  • sloc: sh: 437; ansic: 123; makefile: 14
file content (11 lines) | stat: -rw-r--r-- 293 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
project('q6voiced', 'c')

pkg = import('pkgconfig')
dbus = dependency('dbus-1')
alsa = dependency('alsa')

executable('q6voiced',
           'q6voiced.c',
           dependencies: [dbus, alsa],
           install_dir: get_option('prefix') / get_option('libexecdir'),
           install: true)