mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-29 10:38:47 +08:00
update docs
This commit is contained in:
parent
af168804d6
commit
c0f72cc019
24
3rd/SDL/sync.py
Executable file
24
3rd/SDL/sync.py
Executable file
@ -0,0 +1,24 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import os
|
||||
import glob
|
||||
import copy
|
||||
import shutil
|
||||
import platform
|
||||
|
||||
def joinPath(root, subdir):
|
||||
return os.path.normpath(os.path.join(root, subdir))
|
||||
|
||||
# XXX: make sure no no ascii chars in the path name.
|
||||
|
||||
SRC_ROOT_DIR=joinPath(os.getcwd(), '../../../3rd/SDL/');
|
||||
DST_ROOT_DIR=os.getcwd();
|
||||
|
||||
def copyFiles(src):
|
||||
s = joinPath(SRC_ROOT_DIR, src)
|
||||
d = joinPath(DST_ROOT_DIR, src)
|
||||
print(s + '->' + d)
|
||||
shutil.rmtree(d, True)
|
||||
shutil.copytree(s, d)
|
||||
|
||||
copyFiles('src');
|
3
3rd/agg/README.md
Normal file
3
3rd/agg/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Anti-Grain Geometry
|
||||
|
||||
本目录从agg仓库同步而来:https://github.com/zlgopen/agg
|
3
3rd/agge/README.md
Normal file
3
3rd/agge/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Anti-Grain Evolution
|
||||
|
||||
本目录从agge仓库同步而来:https://github.com/zlgopen/agge
|
Loading…
Reference in New Issue
Block a user