blob: 69792f73823f74e675e458414b2b7ab518248e78 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
if(NOT SOUNDTOUCH_FOUND)
pkg_check_modules(SOUNDTOUCH_TMP soundtouch)
find_path(SOUNDTOUCH_INCLUDE_DIRS NAMES SoundTouch.h
PATHS
${SOUNDTOUCH_TMP_INCLUDE_DIRS}
/usr/include/soundtouch
/usr/include
/usr/local/include/soundtouch
/usr/local/include
)
find_library(SOUNDTOUCH_LIBRARIES NAMES SoundTouch
PATHS
${SOUNDTOUCH_TMP_LIBRARY_DIRS}
/usr/lib
/usr/local/lib
)
if(SOUNDTOUCH_INCLUDE_DIRS AND SOUNDTOUCH_LIBRARIES)
set(SOUNDTOUCH_FOUND TRUE CACHE INTERNAL "SoundTouch found")
message(STATUS "Found SoundTouch: ${SOUNDTOUCH_INCLUDE_DIRS}, ${SOUNDTOUCH_LIBRARIES}")
else()
set(SOUNDTOUCH_FOUND FALSE CACHE INTERNAL "SoundTouch found")
message(STATUS "SoundTouch not found.")
endif()
endif()
|