File: meson.build

package info (click to toggle)
meson-python 0.18.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,264 kB
  • sloc: python: 3,005; ansic: 326; makefile: 8
file content (14 lines) | stat: -rw-r--r-- 364 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-FileCopyrightText: 2021 The meson-python developers
#
# SPDX-License-Identifier: MIT

project('configure-data', version: '1.0.0')

py = import('python').find_installation()

configure_file(
    input: 'configure_data.py.in',
    output: 'configure_data.py',
    configuration: configuration_data({'MSG': 'hello!'}),
    install_dir: py.get_install_dir(),
)