File: meson.build

package info (click to toggle)
policykit-1 127-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,684 kB
  • sloc: ansic: 20,535; xml: 3,715; sh: 577; python: 135; javascript: 83; exp: 79; makefile: 49; perl: 11
file content (19 lines) | stat: -rw-r--r-- 442 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
libpolkit_test_helper = static_library(
  'polkit-test-helper',
  sources: 'polkittesthelper.c',
  dependencies: glib_dep,
)

libpolkit_test_helper_dep = declare_dependency(
  include_directories: '.',
  dependencies: glib_dep,
  link_with: libpolkit_test_helper,
)

test_wrapper = find_program('wrapper.py')
test_data_dir = meson.current_source_dir() / 'data'

subdir('polkit')
if not get_option('libs-only')
  subdir('polkitbackend')
endif