summaryrefslogtreecommitdiff
path: root/contrib/gstreamer-plugin/meson.build
blob: 59a04f3279860c857b192b38f2a0fc5158738121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
gstreamer_dep = dependency('gstreamer-1.0')
gstreamer_plugins_base_dep = dependency('gstreamer-plugins-base-1.0')

executable(
  'pk-gstreamer-install',
  'pk-gstreamer-install.c',
  dependencies: [
    packagekit_glib2_dep,
    gstreamer_dep,
    gstreamer_plugins_base_dep,
  ],
  install: true,
  install_dir: get_option('libexecdir'),
  c_args: [
    '-DI_KNOW_THE_PACKAGEKIT_GLIB2_API_IS_SUBJECT_TO_CHANGE=1',
    '-DVERSION="@0@"'.format(meson.project_version()),
  ]
)