diff options
author | crupest <crupest@outlook.com> | 2019-03-21 21:49:44 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-03-21 21:49:44 +0800 |
commit | 69e1b6121be30ccecb5ccb48311a28b6842730e0 (patch) | |
tree | 8e962c47f73693509499e6e92fcf92aaac3a2342 /scripts | |
parent | fdbb02b2cbdd4e4069005d0535a343229f7c4d32 (diff) | |
download | cru-69e1b6121be30ccecb5ccb48311a28b6842730e0.tar.gz cru-69e1b6121be30ccecb5ccb48311a28b6842730e0.tar.bz2 cru-69e1b6121be30ccecb5ccb48311a28b6842730e0.zip |
Delete some files.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/merge.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/merge.py b/scripts/merge.py deleted file mode 100644 index 250dfecb..00000000 --- a/scripts/merge.py +++ /dev/null @@ -1,13 +0,0 @@ -import os -import os.path - -script_dir = os.path.dirname(os.path.realpath(__file__)) - -tool_path =os.path.relpath(os.path.join(script_dir, '../tools/cppmerge/main.py')) -input_dir = os.path.relpath(os.path.join(script_dir, '../src')) -output_path = os.path.relpath(os.path.join(script_dir, '../CruUI-Generate/cru_ui')) - -print('Input dir is {}'.format(input_dir)) -print('Output path is {}'.format(output_path)) - -os.system('python {} -o {} {}'.format(tool_path, output_path, input_dir)) |