mirror of
https://github.com/mpv-player/mpv
synced 2024-12-26 17:12:36 +00:00
ff322864f2
Adds support for the meson build system as well as a bit of documentation. Compatibility with the existing waf build is maintained.
9 lines
282 B
Meson
9 lines
282 B
Meson
input = join_paths(source_root, 'TOOLS', 'osxbundle',
|
|
'mpv.app', 'Contents', 'Resources', 'icon.icns')
|
|
osxbundle = custom_target('osxbundle',
|
|
input: input,
|
|
output: 'icon.icns.inc',
|
|
command: [file2string, '@INPUT@', '@OUTPUT@'],
|
|
)
|
|
sources += osxbundle
|