python3Packages.pywikibot: init at 9.5.0 (#333068)
[NixPkgs.git] / pkgs / os-specific / darwin / apple-source-releases / libutil / meson.build.in
blobfa7f3610f5327cc28c03c6e1b1a0f8ba63805da4
1 # Build settings based on the upstream Xcode project.
2 # See: https://github.com/apple-oss-distributions/libutil/blob/main/libutil.xcodeproj/project.pbxproj
4 # Project settings
5 project('libutil', 'c', 'cpp', version : '@version@')
8 # Dependencies
9 cc = meson.get_compiler('c')
10 cxx = meson.get_compiler('cpp')
13 # Libraries
14 libutil = library(
15     'util',
16     darwin_versions : '1',
17     install : true,
18     sources : [
19         'ExtentManager.cpp',
20         'expand_number.c',
21         'getmntopts.c',
22         'humanize_number.c',
23         'pidfile.c',
24         'realhostname.c',
25         'reexec_to_match_kernel.c',
26         'trimdomain.c',
27         'tzbootuuid.c',
28         'tzlink.c',
29         'tzlink.h',
30         'wipefs.cpp',
31     ],
33 install_headers(
34     'libutil.h',
35     'mntopts.h',
36     'tzlink.h',
37     'wipefs.h',
39 install_man(
40     'expand_number.3',
41     'getmntopts.3',
42     'humanize_number.3',
43     'pidfile.3',
44     'realhostname.3',
45     'realhostname_sa.3',
46     'reexec_to_match_kernel.3',
47     'trimdomain.3',
48     'wipefs.3',