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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-06-22 12:53:21 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-10-30 21:07:46 +0300
commit7013d55580f59066f8b88626808502feb2d66e3d (patch)
treec3b71d1f86986d933cb55c7e10dbc40f468d7d13 /extern/libmv/bundle.sh
parentb15a056230434bbb873a5d5d04e560a6569d8e62 (diff)
Libmv: Add autotrack API to the C-API
Pretty much straightforward changes, nothing to be mentioned specially.
Diffstat (limited to 'extern/libmv/bundle.sh')
-rwxr-xr-xextern/libmv/bundle.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/extern/libmv/bundle.sh b/extern/libmv/bundle.sh
index f352f77373b..668c11bf94b 100755
--- a/extern/libmv/bundle.sh
+++ b/extern/libmv/bundle.sh
@@ -159,30 +159,36 @@ if(WITH_LIBMV)
list(APPEND INC_SYS
../Eigen3
- \${PNG_INCLUDE_DIR}
+ \${PNG_INCLUDE_DIRS}
\${ZLIB_INCLUDE_DIRS}
)
list(APPEND SRC
+ intern/autotrack.cc
intern/camera_intrinsics.cc
intern/detector.cc
+ intern/frame_accessor.cc
intern/homography.cc
intern/image.cc
intern/logging.cc
intern/reconstruction.cc
intern/track_region.cc
intern/tracks.cc
+ intern/tracksN.cc
${sources}
${third_sources}
+ intern/autotrack.h
intern/camera_intrinsics.h
intern/detector.h
+ intern/frame_accessor.h
intern/homography.h
intern/image.h
intern/logging.h
intern/reconstruction.h
intern/track_region.h
intern/tracks.h
+ intern/tracksN.h
${headers}
${third_headers}
@@ -207,7 +213,7 @@ ${tests}
endif()
else()
list(APPEND SRC
- libmv-capi_stub.cc
+ intern/stub.cc
)
endif()