You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
802 B
37 lines
802 B
if(Opus_INCLUDE_DIR AND Opus_LIBRARY) |
|
set(Opus_FIND_QUIETLY TRUE) |
|
endif() |
|
|
|
find_path(Opus_INCLUDE_DIR opus.h |
|
/usr/local/include |
|
/usr/include |
|
) |
|
|
|
find_library(Opus_LIBRARY NAMES opus |
|
PATHS /usr/local/lib /usr/lib) |
|
|
|
find_library(Celt_LIBRARY NAMES celt |
|
PATHS /usr/local/lib /usr/lib) |
|
|
|
find_library(Silk_LIBRARY NAMES silk_common |
|
PATHS /usr/local/lib /usr/lib) |
|
|
|
set(Opus_LIBRARIES |
|
${Opus_LIBRARY} |
|
${Celt_LIBRARY} |
|
${Silk_LIBRARY} |
|
) |
|
|
|
if(Opus_INCLUDE_DIR AND Opus_LIBRARY) |
|
set(Opus_FOUND TRUE) |
|
endif() |
|
|
|
if (Opus_FOUND) |
|
if(NOT Opus_FIND_QUIETLY) |
|
message(STATUS "Found libopus: ${Opus_INCLUDE_DIR}") |
|
endif() |
|
else() |
|
if(Opus_FIND_REQUIRED) |
|
message(FATAL_ERROR "Could not find libopus") |
|
endif() |
|
endif()
|
|
|