From: hobbes1069 Date: Mon, 16 Jun 2014 17:58:16 +0000 (+0000) Subject: Fix linking of portaudio library. X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=22d8b03600d2d7d11481802ac0b3052e25e20a49;p=freetel-svn-tracking.git Fix linking of portaudio library. git-svn-id: https://svn.code.sf.net/p/freetel/code@1656 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/fdmdv2/CMakeLists.txt b/fdmdv2/CMakeLists.txt index b95b7746..3d503b23 100644 --- a/fdmdv2/CMakeLists.txt +++ b/fdmdv2/CMakeLists.txt @@ -226,7 +226,7 @@ if(NOT USE_STATIC_PORTAUDIO) message(STATUS "Looking for portaudio...") find_package(Portaudio REQUIRED) if(PORTAUDIO_FOUND AND ${PORTAUDIO_VERSION} EQUAL 19) - list(APPEND FREEDV_LINK_LIBRARIES ${PORTAUDIO_LIBRARIES}) + list(APPEND FREEDV_LINK_LIBS ${PORTAUDIO_LIBRARIES}) include_directories(${PORTAUDIO_INCLUDE_DIRS}) else() message(WARNING "Portaudio versions other than 19 are known to have issues. You have been warned!")