mirror of
https://github.com/mpv-player/mpv
synced 2025-01-06 23:20:15 +00:00
257bc95255
A few custom targets had some less than optimal names which created some misleading "Generating custom-target-name with a custom command" messages. Change those to be more descriptive/correct. In a few other places, some checks were being done that could easily be skipped/ignored in certain cases (like checking for windows-related headers when gl-win32 isn't true). Also rearrange that to be smarter. Finally, print some extra libplacebo messages for enabling/disabling vo_gpu_next.
28 lines
925 B
Meson
28 lines
925 B
Meson
ebml_defs = custom_target('ebml_defs.inc',
|
|
output: 'ebml_defs.inc',
|
|
command: [matroska, '--generate-definitions', '@OUTPUT@'],
|
|
)
|
|
|
|
ebml_types = custom_target('ebml_types.h',
|
|
output: 'ebml_types.h',
|
|
command: [matroska, '--generate-header', '@OUTPUT@'],
|
|
)
|
|
|
|
version_h = custom_target('version.h',
|
|
output: 'version.h',
|
|
command: [version_py, '@OUTPUT@'],
|
|
build_always_stale: true,
|
|
)
|
|
|
|
sources += [ebml_defs, ebml_types, version_h]
|
|
|
|
# Meson doesn't allow having multiple build targets with the same name in the same file.
|
|
# Just generate the com in here for windows builds.
|
|
if win32 and get_option('cplayer')
|
|
features += 'win32-executable'
|
|
wrapper_flags = ['-municode', '-Wl,--subsystem,console']
|
|
wrapper_sources= '../osdep/win32-console-wrapper.c'
|
|
executable('mpv', wrapper_sources, c_args: wrapper_flags, link_args: wrapper_flags,
|
|
name_suffix: 'com', install: true)
|
|
endif
|