From 7b282e21dec80d7eb23e960c62f188e94ba2ceea Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sun, 19 Mar 2023 05:01:17 +0100 Subject: [PATCH] Fix compile with GStreamer disabled --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dabb9cd4..85eb0af8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -381,12 +381,12 @@ optional_component(VLC ON "Engine: VLC backend" optional_component(SONGFINGERPRINTING ON "Song fingerprinting and tracking" DEPENDS "chromaprint" CHROMAPRINT_FOUND - DEPENDS "gstreamer" GSTREAMER_FOUND + DEPENDS "gstreamer" HAVE_GSTREAMER ) optional_component(MUSICBRAINZ ON "MusicBrainz integration" DEPENDS "chromaprint" CHROMAPRINT_FOUND - DEPENDS "gstreamer" GSTREAMER_FOUND + DEPENDS "gstreamer" HAVE_GSTREAMER ) if(X11_FOUND OR HAVE_DBUS OR APPLE OR WIN32) @@ -411,7 +411,7 @@ endif() optional_component(AUDIOCD ON "Devices: Audio CD support" DEPENDS "libcdio" LIBCDIO_FOUND - DEPENDS "gstreamer" GSTREAMER_FOUND + DEPENDS "gstreamer" HAVE_GSTREAMER ) optional_component(UDISKS2 ON "Devices: UDisks2 backend"