Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
696 B
Meson
35 lines
696 B
Meson
# Build settings based on the upstream Xcode project.
|
|
# See: https://github.com/apple-oss-distributions/removefile/blob/main/removefile.xcodeproj/project.pbxproj
|
|
|
|
# Project settings
|
|
project('removefile', 'c', version : '@version@')
|
|
|
|
|
|
# Dependencies
|
|
cc = meson.get_compiler('c')
|
|
|
|
|
|
# Libraries
|
|
library(
|
|
'removefile',
|
|
c_args : [
|
|
'-D__DARWIN_NOW_CANCELABLE=1',
|
|
],
|
|
install : true,
|
|
sources : [
|
|
'removefile.c',
|
|
'removefile_random.c',
|
|
'removefile_rename_unlink.c',
|
|
'removefile_sunlink.c',
|
|
'removefile_tree_walker.c',
|
|
],
|
|
)
|
|
install_headers(
|
|
'checkint.h',
|
|
'removefile.h',
|
|
)
|
|
install_man(
|
|
'checkint.3',
|
|
'removefile.3',
|
|
)
|