summaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorChristian Daniel <cd@maintech.de>2013-03-22 11:18:30 +0100
committerChristian Daniel <cd@maintech.de>2013-03-22 11:18:30 +0100
commiteca56e35be841396f6c57bab540a3e1503253d56 (patch)
tree4a0a29cd53a84339e56754c32bf67391c83494fe /cmake
parent2c8c930b39fe069b36d81caa00401d9ac182a9d8 (diff)
monster rework
- pluginify whole project - reorganize directory structure - fix PortAudio detection script - implement generic channelizer - fix several OpenGL problems - rework presets - add audio mixing - too many more
Diffstat (limited to 'cmake')
-rw-r--r--cmake/Modules/FindPortaudio.cmake20
1 files changed, 10 insertions, 10 deletions
diff --git a/cmake/Modules/FindPortaudio.cmake b/cmake/Modules/FindPortaudio.cmake
index 61e4ae2..3f23a9c 100644
--- a/cmake/Modules/FindPortaudio.cmake
+++ b/cmake/Modules/FindPortaudio.cmake
@@ -6,27 +6,27 @@
# PORTAUDIO_LIBRARIES - Link these to use Portaudio
include(FindPkgConfig)
-pkg_check_modules(PC_PORTAUDIO portaudio)
+pkg_check_modules(PC_PORTAUDIO portaudio-2.0)
find_path(PORTAUDIO_INCLUDE_DIRS
NAMES
- portaudio.h
+ portaudio.h
PATHS
- /usr/local/include
- /usr/include
+ /usr/local/include
+ /usr/include
HINTS
- ${PC_PORTAUDIO_INCLUDE_DIR}
+ ${PC_PORTAUDIO_INCLUDE_DIR}
)
find_library(PORTAUDIO_LIBRARIES
NAMES
- portaudio
+ portaudio
PATHS
- /usr/local/lib
- /usr/lib
- /usr/lib64
+ /usr/local/lib
+ /usr/lib
+ /usr/lib64
HINTS
- ${PC_PORTAUDIO_LIBDIR}
+ ${PC_PORTAUDIO_LIBDIR}
)
mark_as_advanced(PORTAUDIO_INCLUDE_DIRS PORTAUDIO_LIBRARIES)