forked from blender/blender
Sergey Sharybin
ba432299cd
Logically it is intern library since being mainly developed by 1.5 blender guys.
7 lines
194 B
Bash
Executable File
7 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find ./libmv/ -type f | sed -r 's/^\.\///' | sort > files.txt
|
|
find ./third_party/ -mindepth 2 -type f | \
|
|
grep -v third_party/ceres | \
|
|
sed -r 's/^\.\///' | sort >> files.txt
|