mirror of https://github.com/mpv-player/mpv
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
|