shithub: opusfile

ref: 8b2c85b136478357dc6e9fcabc677daebb96a31d
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()