File: meson.build

package info (click to toggle)
libxmlb 0.3.24-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,052 kB
  • sloc: ansic: 12,692; python: 569; xml: 83; sh: 81; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 421 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
if get_option('tests') and host_machine.system() != 'windows'
  configure_file(
    input : 'libxmlb.test.in',
    output : 'libxmlb.test',
    configuration : conf,
    install: true,
    install_dir: installed_test_datadir,
  )

  install_data([
    'test.desktop',
    'test.quirk',
    'test.xml',
    'test.xml.gz.gz.gz',
    'test.xml.xz',
    'test.xml.zst',
  ],
    install_dir: installed_test_bindir,
  )
endif