File: FindMPGHIP.cmake

package info (click to toggle)
kodi-audioencoder-lame 3.0.2%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 152 kB
  • sloc: cpp: 162; xml: 34; makefile: 10
file content (12 lines) | stat: -rw-r--r-- 322 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
# - Try to find MPGHIP
# Once done this will define
#
# MPGHIP_FOUND - system has libmpghip
# MPGHIP_LIBRARIES - The limpghip libraries

find_library(MPGHIP_LIBRARIES mpghip)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(MPGHIP DEFAULT_MSG MPGHIP_LIBRARIES)

mark_as_advanced(MPGHIP_LIBRARIES)