Changeset 9840 for OpenSceneGraph/trunk/CMakeModules/FindFFmpeg.cmake
- Timestamp:
- 03/03/09 11:53:26 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/CMakeModules/FindFFmpeg.cmake
r9817 r9840 1 # Locate gdal1 # Locate ffmpeg 2 2 # This module defines 3 3 # FFMPEG_LIBRARIES 4 # FFMPEG_FOUND, if false, do not try to link to gdal4 # FFMPEG_FOUND, if false, do not try to link to ffmpeg 5 5 # FFMPEG_INCLUDE_DIR, where to find the headers 6 6 # … … 10 10 # Created by Robert Osfield. 11 11 12 #use pkg-config to find various mod ues12 #use pkg-config to find various modes 13 13 INCLUDE(FindPkgConfig OPTIONAL) 14 14 … … 30 30 31 31 SET(FFMPEG_INCLUDE_DIRS ${FFMPEG_LIBAVFORMAT_INCLUDE_DIRS}) 32 32 33 SET(FFMPEG_LIBRARY_DIRS ${FFMPEG_LIBAVFORMAT_LIBRARY_DIRS}) 34 33 35 SET(FFMPEG_LIBRARIES 34 36 ${FFMPEG_LIBAVFORMAT_LIBRARIES} … … 36 38 ${FFMPEG_LIBAVCODEC_LIBRARIES} 37 39 ${FFMPEG_LIBAVUTIL_LIBRARIES}) 38 40 39 41 ENDIF(FFMPEG_LIBAVFORMAT_FOUND AND FFMPEG_LIBAVDEVICE_FOUND AND FFMPEG_LIBAVCODEC_FOUND AND FFMPEG_LIBAVUTIL_FOUND) 40 42
