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
path: root/extern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-05-13 02:40:12 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-05-13 02:40:12 +0400
commit91b659d174bb14c5a86bdb4568999ba9c462a47f (patch)
tree51caff13ef0aaec104f9e27f055f6cb593a1ad7e /extern
parent4dba8307f2b613ade25be4117fd374575a27aab5 (diff)
Forgot this in one of previous commits
Idea here is to be able to have all files opened in IDE and not confuse it by the same function implemented in multiple files.
Diffstat (limited to 'extern')
-rw-r--r--extern/libmv/libmv-capi.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/extern/libmv/libmv-capi.cc b/extern/libmv/libmv-capi.cc
index 4aa8093aba9..c21ceb14458 100644
--- a/extern/libmv/libmv-capi.cc
+++ b/extern/libmv/libmv-capi.cc
@@ -24,6 +24,8 @@
* ***** END GPL LICENSE BLOCK *****
*/
+#ifdef WITH_LIBMV
+
/* define this to generate PNG images with content of search areas
tracking between which failed */
#undef DUMP_FAILURE
@@ -965,3 +967,5 @@ void libmv_InvertCameraIntrinsics(libmv_cameraIntrinsicsOptions *libmv_camera_in
camera_intrinsics.InvertIntrinsics(x, y, x1, y1);
}
}
+
+#endif