File: FindFAAC.cmake

package info (click to toggle)
performous 1.1%2Bgit20181118-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 11,752 kB
  • sloc: cpp: 30,014; ansic: 2,751; sh: 801; xml: 464; python: 374; makefile: 29
file content (24 lines) | stat: -rw-r--r-- 506 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# - Try to find FAAC
# Once done, this will define
#
#  FAAC_FOUND - system has FAAC
#  FAAC_INCLUDE_DIRS - the FAAC include directories
#  FAAC_LIBRARIES - link these to use FAAC
#
# See documentation on how to write CMake scripts at
# http://www.cmake.org/Wiki/CMake:How_To_Find_Libraries

include(LibFindMacros)

find_path(FAAC_INCLUDE_DIR
  NAMES faac.h
)

find_library(FAAC_LIBRARY
  NAMES faac
)

set(FAAC_PROCESS_INCLUDES FAAC_INCLUDE_DIR)
set(FAAC_PROCESS_LIBS FAAC_LIBRARY)
libfind_process(FAAC)