File: FindIPP.cmake

package info (click to toggle)
genomicsdb 1.4.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 24,788 kB
  • sloc: cpp: 78,988; ansic: 58,119; java: 8,531; python: 2,270; sh: 1,850; perl: 1,621; makefile: 490; xml: 455
file content (9 lines) | stat: -rw-r--r-- 537 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
# Determine path to IPP libraries for Zlib
# Once done this will define
# LIBIPP_FOUND - IPP found

find_library(LIBIPPDC_LIBRARY NAMES libippdc.a ippdc HINTS "${IPPROOT}/lib/intel64/")
find_library(LIBIPPS_LIBRARY NAMES libipps.a ipps HINTS "${IPPROOT}/lib/intel64/")
find_library(LIBIPPCORE_LIBRARY NAMES libippcore.a ippcore HINTS "${IPPROOT}/lib/intel64/")
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(IPP "Could not find IPP libraries ${DEFAULT_MSG}" LIBIPPDC_LIBRARY LIBIPPS_LIBRARY LIBIPPCORE_LIBRARY)