File: meson.build

package info (click to toggle)
ndctl 81-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,436 kB
  • sloc: ansic: 41,432; sh: 3,931; makefile: 28
file content (19 lines) | stat: -rw-r--r-- 333 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
util = static_library('util', [
  'parse-options.c',
  'parse-configs.c',
  'usage.c',
  'size.c',
  'json.c',
  'log.c',
  'main.c',
  'help.c',
  'strbuf.c',
  'wrapper.c',
  'bitmap.c',
  'abspath.c',
  'iomem.c',
  ],
  dependencies: iniparser,
  include_directories : root_inc,
)
util_dep = declare_dependency(link_with : util)