From cfc875dfa13f74ffcaea66f5665efed7a8753ef3 Mon Sep 17 00:00:00 2001 From: Lubos Dolezel Date: Mon, 15 Jun 2015 11:27:49 +0200 Subject: Added G729A decoder/encoder wrappers (issue #15) --- cmake/FindG729.cmake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cmake') diff --git a/cmake/FindG729.cmake b/cmake/FindG729.cmake index d11a27e..4a30ba0 100644 --- a/cmake/FindG729.cmake +++ b/cmake/FindG729.cmake @@ -1,14 +1,14 @@ FIND_PATH(G729_INCLUDE_DIR bcg729/decoder.h) -FIND_LIBRARY(G729_LIBRARIES NAMES bcg729) +FIND_LIBRARY(G729_LIBRARY NAMES bcg729) -IF(G729_INCLUDE_DIR AND G729_LIBRARIES) +IF(G729_INCLUDE_DIR AND G729_LIBRARY) SET(G729_FOUND TRUE) -ENDIF(G729_INCLUDE_DIR AND G729_LIBRARIES) +ENDIF(G729_INCLUDE_DIR AND G729_LIBRARY) IF(G729_FOUND) IF (NOT G729_FIND_QUIETLY) MESSAGE(STATUS "Found bcg729 includes: ${G729_INCLUDE_DIR}/bcg729/decoder.h") - MESSAGE(STATUS "Found bcg729 library: ${G729_LIBRARIES}") + MESSAGE(STATUS "Found bcg729 library: ${G729_LIBRARY}") ENDIF (NOT G729_FIND_QUIETLY) ELSE(G729_FOUND) IF (G729_FIND_REQUIRED) -- cgit v1.2.3