shithub: opusfile

ref: 6759af4b189d9fd6480f2db14eb106715a254619
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()