- Timestamp:
- 03/03/09 17:36:31 (4 years ago)
- Location:
- OpenSceneGraph/branches/osg-cocoa-dev
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
CMakeModules/FindFFmpeg.cmake (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/branches/osg-cocoa-dev
- Property svn:mergeinfo set to /OpenSceneGraph/trunk:9838-9843
-
OpenSceneGraph/branches/osg-cocoa-dev/CMakeModules/FindFFmpeg.cmake
r9817 r9846 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
