File: meson.build

package info (click to toggle)
papers 49.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,332 kB
  • sloc: ansic: 37,722; sh: 197; xml: 127; makefile: 112
file content (24 lines) | stat: -rw-r--r-- 378 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
20
21
22
23
24
backend_sources = files(
  'comics-document.c',
  'pps-archive.c',
)

backend_incs = backends_common_incs

backend_deps = backends_common_deps + [
  libarchive_dep,
]

test_name = 'test-pps-archive'

test_sources = files(
  'pps-archive.c',
  'test-pps-archive.c',
)

executable(
  test_name,
  test_sources,
  include_directories: backend_incs,
  dependencies: backend_deps,
)