From 8a572df53a02f59bcbcb0d3944255a9a1a83bfd1 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Thu, 10 Sep 2015 09:33:55 +0200 Subject: Fix CMake conditional for VLC_FOUND --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1e888af..16ac794 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,7 +83,7 @@ option(ENABLE_INPUT_JACK if(ENABLE_INPUT_VLC) - if(NOT LIBVLC_FOUND) + if(NOT VLC_FOUND) message(FATAL_ERROR "libvlc required to compile toolame-dab with ENABLE_INPUT_VLC \n") endif() add_definitions(-DVLC_INPUT) -- cgit v1.2.3