Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ option(OP_DISABLE_DOCS "Do not build API documentation" OFF)

include(GNUInstallDirs)

find_package(Ogg REQUIRED)
find_package(Opus REQUIRED)
if (NOT TARGET Ogg::ogg)
find_package(Ogg REQUIRED)
endif()
if(NOT TARGET Opus::opus)
find_package(Opus REQUIRED)
endif()

include(CMakePushCheckState)
include(CheckSymbolExists)
Expand Down