Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
509 B
Meson
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
# Build settings based on the upstream Xcode project.
# See: https://github.com/apple-oss-distributions/basic_cmds/blob/main/basic_cmds.xcodeproj/project.pbxproj
# Project settings
project('basic_cmds', 'c', version : '@version@')
# Dependencies
cc = meson.get_compiler('c')
# Binaries
executable(
'mesg',
install : true,
sources : [ 'mesg/mesg.c' ],
)
install_man('mesg/mesg.1')
executable(
'write',
install : true,
sources : [ 'write/write.c' ],
)
install_man('write/write.1')