launch sequence
This commit is contained in:
parent
1fa635f71b
commit
3e1cd3f490
4 changed files with 177 additions and 65 deletions
14
tools/build/build.py
Normal file
14
tools/build/build.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import os
|
||||
import simplejson
|
||||
|
||||
images = []
|
||||
path = '../../build/'
|
||||
|
||||
for dirname, dirnames, filenames in os.walk(path + 'png'):
|
||||
for filename in filenames:
|
||||
if filename[:1] != '.':
|
||||
images.append(os.path.join(dirname.replace(path, ''), filename))
|
||||
|
||||
f = open(path + 'json/ox.ui.images.json', 'w')
|
||||
f.write(simplejson.dumps(images))
|
||||
f.close()
|
||||
Loading…
Add table
Add a link
Reference in a new issue