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'
)
|