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>2016-01-04 21:32:29 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-01-04 21:32:57 +0300
commit4a3e89e9ee7152781e13b9fc80e49224d2a5cefd (patch)
tree85d9e680bb7da1181f02049e9f84d6e13284ed0c /intern/libmv/bundle.sh
parentbe87bc6bd8c3047faba4a4347126f58932e16d65 (diff)
Fix wrong linking flags for Libmv tests
Diffstat (limited to 'intern/libmv/bundle.sh')
-rwxr-xr-xintern/libmv/bundle.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/libmv/bundle.sh b/intern/libmv/bundle.sh
index e719e592c02..b1a4be84e53 100755
--- a/intern/libmv/bundle.sh
+++ b/intern/libmv/bundle.sh
@@ -32,7 +32,7 @@ headers=`find ./libmv -type f -iname '*.h' | grep -v test_data_sets | sed -r 's/
third_sources=`find ./third_party -type f -iname '*.cc' -or -iname '*.cpp' -or -iname '*.c' | sed -r 's/^\.\//\t\t/' | sort -d`
third_headers=`find ./third_party -type f -iname '*.h' | sed -r 's/^\.\//\t\t/' | sort -d`
-tests=`find ./libmv -type f -iname '*_test.cc' | sort -d | awk ' { name=gensub(".*/([A-Za-z_]+)_test.cc", "\\\\1", $1); printf("\t\tBLENDER_SRC_GTEST(\"libmv_%s\" \"%s\" \"libmv_test_dataset;extern_libmv;extern_ceres\")\n", name, $1) } '`
+tests=`find ./libmv -type f -iname '*_test.cc' | sort -d | awk ' { name=gensub(".*/([A-Za-z_]+)_test.cc", "\\\\1", $1); printf("\t\tBLENDER_SRC_GTEST(\"libmv_%s\" \"%s\" \"libmv_test_dataset;bf_intern_libmv;extern_ceres\")\n", name, $1) } '`
src_dir=`find ./libmv -type f -iname '*.cc' -exec dirname {} \; -or -iname '*.cpp' -exec dirname {} \; -or -iname '*.c' -exec dirname {} \; | sed -r 's/^\.\//\t\t/' | sort -d | uniq`
src_third_dir=`find ./third_party -type f -iname '*.cc' -exec dirname {} \; -or -iname '*.cpp' -exec dirname {} \; -or -iname '*.c' -exec dirname {} \; | sed -r 's/^\.\//\t\t/' | sort -d | uniq`