mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-03-12 05:25:23 -07:00
17 lines
295 B
CMake
17 lines
295 B
CMake
# Opus_FOUND
|
|
# Opus_INCLUDE_DIRS
|
|
# Opus_LIBRARIES
|
|
|
|
find_path(Opus_INCLUDE_DIRS
|
|
NAMES opus/opus.h
|
|
PATH_SUFFIXES include
|
|
)
|
|
|
|
find_library(Opus_LIBRARIES NAMES opus)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(Opus
|
|
DEFAULT_MSG
|
|
Opus_INCLUDE_DIRS Opus_LIBRARIES
|
|
)
|