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:
Diffstat (limited to 'source/creator/CMakeLists.txt')
-rw-r--r--source/creator/CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 867ea37e0a1..a633a139995 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -68,6 +68,11 @@ if(WITH_IMAGE_HDR)
add_definitions(-DWITH_HDR)
endif()
+if(WITH_LIBMV)
+ blender_include_dirs(../../extern/libmv)
+ add_definitions(-DWITH_LIBMV)
+endif()
+
if(WITH_PYTHON)
blender_include_dirs(../blender/python)
add_definitions(-DWITH_PYTHON)
@@ -758,6 +763,7 @@ endif()
bf_editor_space_time
bf_editor_space_userpref
bf_editor_space_view3d
+ bf_editor_space_clip
bf_editor_text
bf_editor_transform
@@ -815,6 +821,7 @@ endif()
extern_minilzo
extern_lzma
extern_colamd
+ extern_libmv
ge_logic_ketsji
extern_recastnavigation
ge_phys_common
@@ -838,6 +845,10 @@ endif()
bf_intern_mikktspace
)
+ if(WITH_LIBMV)
+ list(APPEND BLENDER_SORTED_LIBS extern_libmv)
+ endif()
+
if(WITH_MOD_CLOTH_ELTOPO)
list(APPEND BLENDER_SORTED_LIBS extern_eltopo)
endif()