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:
authorCampbell Barton <ideasman42@gmail.com>2011-06-23 19:58:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-06-23 19:58:41 +0400
commitbb3742fe91367196c14c4a5cb71245352e9f4fdf (patch)
treee363f67166190779b83fecb0f297702f93104e45 /source/blender/imbuf/CMakeLists.txt
parentc3e48219e6aa3806ec0f8b89e2919f3d11596ef4 (diff)
correction to recent commit & made ffmpeg includes only add when enabled.
Diffstat (limited to 'source/blender/imbuf/CMakeLists.txt')
-rw-r--r--source/blender/imbuf/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/CMakeLists.txt b/source/blender/imbuf/CMakeLists.txt
index 14679b37d1e..c9a8f62a197 100644
--- a/source/blender/imbuf/CMakeLists.txt
+++ b/source/blender/imbuf/CMakeLists.txt
@@ -38,7 +38,6 @@ set(INC
../makesdna
../../../intern/memutil
../../../intern/guardedalloc
- ../../../intern/ffmpeg
)
set(INC_SYS
@@ -135,6 +134,7 @@ if(WITH_CODEC_QUICKTIME)
endif()
if(WITH_CODEC_FFMPEG)
+ list(APPEND INC ../../../intern/ffmpeg)
list(APPEND INC_SYS ${FFMPEG_INCLUDE_DIRS})
add_definitions(-DWITH_FFMPEG)
endif()