shithub: opusfile

ref: 7d1aa64f9a84011d8eba559d109a83b61d6c6ac5
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)
  set_target_properties(PkgConfig::Ogg PROPERTIES IMPORTED_GLOBAL TRUE)
  add_library(Ogg::ogg ALIAS PkgConfig::Ogg)
endif()