Skip to content

Commit

Permalink
(conan-io#15436) ffmpeg: lowercase system libs
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceIm authored and StellaSmith committed Feb 2, 2023
1 parent ab4e3ee commit 96b4809
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions recipes/ffmpeg/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -775,8 +775,7 @@ def package_info(self):
self.cpp_info.components["avdevice"].system_libs = ["m"]
elif self.settings.os == "Windows":
if self.options.avcodec:
self.cpp_info.components["avcodec"].system_libs = [
"Mfplat", "Mfuuid", "strmiids"]
self.cpp_info.components["avcodec"].system_libs = ["mfplat", "mfuuid", "strmiids"]
if self.options.avdevice:
self.cpp_info.components["avdevice"].system_libs = [
"ole32", "psapi", "strmiids", "uuid", "oleaut32", "shlwapi", "gdi32", "vfw32"]
Expand Down

0 comments on commit 96b4809

Please sign in to comment.