Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-03-18 13:16:04 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-03-18 13:16:04 +0300
commit148985edf03814b26f99bf4ae883c83db216ccf3 (patch)
treea9c853361f9cc01e83816330e6fa7e30f53edd36 /CMakeLists.txt
parent9ebde542ece4ce13c4f8375e879a6c497b4da3f7 (diff)
CMake: FFMPEG directory and libraries are now configurable.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 35730af3f4f..279f4d65947 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -193,9 +193,9 @@ IF(UNIX AND NOT APPLE)
)
SET(OPENEXR_LIB Half IlmImf Iex Imath)
- SET(FFMPEG /usr)
+ SET(FFMPEG /usr CACHE FILEPATH "FFMPEG Directory")
SET(FFMPEG_INC ${FFMPEG}/include)
- SET(FFMPEG_LIB avformat avcodec avutil avdevice swscale)
+ SET(FFMPEG_LIB avformat avcodec avutil avdevice swscale CACHE STRING "FFMPEG Libraries")
SET(FFMPEG_LIBPATH ${FFMPEG}/lib)
IF(WITH_FFTW3)