[libtheora] fix find ogg (#6610)

This commit is contained in:
Alexander Neumann 2019-05-24 21:13:11 +02:00 committed by Phil Christensen
parent d7e41c7ef4
commit 09e6b4dd9d
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
Source: libtheora
Version: 1.2.0alpha1-20170719~vcpkg1-2
Version: 1.2.0alpha1-20170719~vcpkg1-3
Description: Theora is a free and open video compression format from the Xiph.org Foundation.
Build-Depends: libogg

View File

@ -1,6 +1,6 @@
find_path(OGG_INCLUDE_DIR NAMES ogg/ogg.h)
find_library(OGG_LIBRARY NAMES ogg)
find_library(OGG_LIBRARY NAMES ogg libogg)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(OGG DEFAULT_MSG OGG_LIBRARY OGG_INCLUDE_DIR)