forked from blender/blender
Sergey Sharybin
6fb6a08bf8
Even tho it's currently only used by Libmv we might use it for something else in the future. Plus, it's actually where it logically belongs to.
6 lines
205 B
Bash
Executable File
6 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find ./include/ -type f | sed -r 's/^\.\///' | sort > files.txt
|
|
find ./internal/ -type f | sed -r 's/^\.\///' | sort >> files.txt
|
|
find ./config/ -type f | sed -r 's/^\.\///' | sort >> files.txt
|