File: FindOpus.cmake

package info (click to toggle)
chiaki 2.2.0-1.2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 5,312 kB
  • sloc: ansic: 17,616; cpp: 7,901; xml: 2,691; sh: 395; python: 96; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#  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
)