update docs

This commit is contained in:
xianjimli 2018-10-16 09:44:41 +08:00
parent af168804d6
commit c0f72cc019
3 changed files with 30 additions and 0 deletions

24
3rd/SDL/sync.py Executable file
View 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
View File

@ -0,0 +1,3 @@
# Anti-Grain Geometry
本目录从agg仓库同步而来https://github.com/zlgopen/agg

3
3rd/agge/README.md Normal file
View File

@ -0,0 +1,3 @@
# Anti-Grain Evolution
本目录从agge仓库同步而来https://github.com/zlgopen/agge