File: meson.build

package info (click to toggle)
glib2.0 2.86.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 66,456 kB
  • sloc: ansic: 544,658; python: 9,702; sh: 1,612; xml: 1,482; perl: 1,222; cpp: 535; makefile: 321; javascript: 11
file content (28 lines) | stat: -rw-r--r-- 673 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 2024 Collabora Ltd.
# Copyright 2025 Simon McVittie
# SPDX-License-Identifier: LGPL-2.1-or-later

if installed_tests_enabled
  install_data(
    files(
      'taptestrunner.py',
      'testprogramrunner.py',
    ),
    install_dir: installed_tests_execdir,
    install_tag: 'tests',
  )
endif

tests_conf = configuration_data()
tests_conf.set('gir_suffix', gir_suffix)
tests_conf.set('glib_datadir', glib_datadir)
tests_conf.set('glib_girdir', glib_girdir)

configure_file(
  configuration: tests_conf,
  input: 'glibconfig.py.in',
  output: 'glibconfig.py',
  install: installed_tests_enabled,
  install_dir: installed_tests_execdir,
  install_tag: 'tests',
)