3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 14:13:23 +00:00

using doxygen to document z3py API

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-11-22 18:41:43 -08:00
parent b855313141
commit 4b27eae47f
4 changed files with 8 additions and 1 deletions

View file

@ -25,6 +25,7 @@ try:
mk_dir('api/html')
mk_dir('tmp')
shutil.copyfile('website.dox', 'tmp/website.dox')
shutil.copyfile('../src/api/python/z3.py', 'tmp/z3py.py')
cleanup_API('../src/api/z3_api.h', 'tmp/z3_api.h')
print "Removed annotations from z3_api.h."
@ -40,6 +41,8 @@ try:
print "Removed temporary file z3_api.h."
os.remove('tmp/website.dox')
print "Removed temporary file website.dox"
os.remove('tmp/z3py.py')
print "Removed temporary file z3py.py"
os.removedirs('tmp')
print "Removed temporary directory tmp."
sys.path.append('../src/api/python')