meson.build: always write encoder/Features.h

Fixes a build failure in `CommandLine.cxx`.

Closes https://github.com/MusicPlayerDaemon/MPD/issues/905
This commit is contained in:
Max Kellermann 2020-06-25 17:38:45 +02:00
parent c6a7f6dabc
commit fd217daad4

View File

@ -4,6 +4,7 @@ encoder_features.set('ENABLE_ENCODER', need_encoder)
if not need_encoder
encoder_glue_dep = dependency('', required: false)
configure_file(output: 'Features.h', configuration: encoder_features)
subdir_done()
endif