Changeset 1055:05c1d7eaaaa0 in mediastreamer2
- Timestamp:
- Sep 7, 2010 11:13:06 AM (3 years ago)
- Branch:
- default
- File:
-
- 1 edited
-
src/CMakeLists.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/CMakeLists.txt
r1008 r1055 32 32 endif(WIN32) 33 33 34 find_file(GSM_GSM_H gsm/gsm.h )34 find_file(GSM_GSM_H gsm/gsm.h PATHS ${GSM_INCLUDE_PATH}) 35 35 if(GSM_GSM_H) 36 36 find_library(GSM_LIB gsm) … … 46 46 endif(GSM_LIB) 47 47 48 find_file(SPEEX_H speex/speex.h )48 find_file(SPEEX_H speex/speex.h PATHS ${SPEEX_INCLUDE_DIRS}) 49 49 if(SPEEX_H) 50 find_library(SPEEX_LIB speex) 51 find_library(SPEEXDSP_LIB speexdsp) 50 set(MS_LIBS ${MS_LIBS} ${SPEEX_LIBRARIES} ${SPEEXDSP_LIBRARIES}) 51 set(MS_SRCS ${MS_SRCS} msspeex.c msresample.c) 52 include_directories(${SPEEX_INCLUDE_DIRS}) 52 53 endif(SPEEX_H) 53 54 if(SPEEX_LIB)55 set(MS_LIBS ${MS_LIBS} ${SPEEX_LIB} ${SPEEXDSP_LIB})56 set(MS_SRCS ${MS_SRCS} msresample.c msspeex.c)57 endif(SPEEX_LIB)58 54 59 55
Note: See TracChangeset
for help on using the changeset viewer.
