shithub: opusfile

ref: bd269b705b28faec4e7c0475123011f2ef9ace10
dir: /cmake/FindOgg.cmake/

View raw version
find_package(Ogg CONFIG)
if(NOT TARGET Ogg::ogg)
  find_package(PkgConfig REQUIRED)
  pkg_check_modules(Ogg REQUIRED IMPORTED_TARGET ogg)
  add_library(Ogg::ogg ALIAS PkgConfig::Ogg)
endif()