Browse Source

Merge pull request #1678 from boxerab/libvlc_pkgconfig

cmake: Fix pkg-config handling of libvlc
Colin Edwards 6 years ago
parent
commit
ef668b239d
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)