tools/make-frozen.py: Allow to run with no directory passed in.
In which case it will just emit empty frozen C definitions.
This commit is contained in:
parent
8f7f671236
commit
8e8cfa6f53
@ -27,14 +27,15 @@ def module_name(f):
|
||||
|
||||
modules = []
|
||||
|
||||
root = sys.argv[1].rstrip("/")
|
||||
root_len = len(root)
|
||||
if len(sys.argv) > 1:
|
||||
root = sys.argv[1].rstrip("/")
|
||||
root_len = len(root)
|
||||
|
||||
for dirpath, dirnames, filenames in os.walk(root):
|
||||
for f in filenames:
|
||||
fullpath = dirpath + "/" + f
|
||||
st = os.stat(fullpath)
|
||||
modules.append((fullpath[root_len + 1:], st))
|
||||
for dirpath, dirnames, filenames in os.walk(root):
|
||||
for f in filenames:
|
||||
fullpath = dirpath + "/" + f
|
||||
st = os.stat(fullpath)
|
||||
modules.append((fullpath[root_len + 1:], st))
|
||||
|
||||
print("#include <stdint.h>")
|
||||
print("const char mp_frozen_str_names[] = {")
|
||||
|
Loading…
x
Reference in New Issue
Block a user