Browse Source

cmake: Fix pkg-config handling of libvlc

Tested against VLC 3
Aaron Boxer 6 years ago
parent
commit
c150eabe35
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cmake/Modules/FindLibVLC.cmake

+ 1 - 1
cmake/Modules/FindLibVLC.cmake

@@ -10,7 +10,7 @@
 
 find_package(PkgConfig QUIET)
 if (PKG_CONFIG_FOUND)
-	pkg_check_modules(_VLC QUIET VLC)
+	pkg_check_modules(_VLC QUIET libvlc)
 endif()
 
 if(CMAKE_SIZEOF_VOID_P EQUAL 8)