File: meson.build

package info (click to toggle)
liblxi 1.22-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 516 kB
  • sloc: ansic: 3,325; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 534 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
project('liblxi', 'c',
  version : '1.22',
  license : [ 'BSD-3-Clause'],
  meson_version : '>= 0.53.2',
  default_options : [ 'warning_level=2', 'buildtype=release', 'c_std=gnu11', 'optimization=2', 'b_lundef=false' ]
)

# The tag date of the project_version(), update when the version bumps.
version_date='2024-11-08'

subdir('src')
subdir('man')

pkg_mod = import('pkgconfig')
pkg_mod.generate(libraries : liblxi,
  name : 'liblxi',
  filebase : 'liblxi',
  description : 'A Library for managing LXI compatible test instruments'
)