depot/pkgs/os-specific/darwin/apple-source-releases/PowerManagement/meson.build.in
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

23 lines
564 B
Meson

# Build settings based on the upstream Xcode project.
# See: https://github.com/apple-oss-distributions/PowerManagement/blob/main/PowerManagement.xcodeproj/project.pbxproj
# Project settings
project('PowerManagement', 'c', version : '@version@')
# Dependencies
cc = meson.get_compiler('c')
# Binaries
caffeinate = executable(
'caffeinate',
dependencies : dependency('appleframeworks', modules : ['CoreFoundation', 'IOKit']),
install : true,
sources : [
'caffeinate/caffeinate.c',
],
)
install_man(
'caffeinate/caffeinate.8',
)