Skip to content

Commit

Permalink
Builder: Generate Qt Creator help file for the SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Apr 15, 2014
1 parent 029b287 commit a8d2263
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion distrib/autobuild.py
Expand Up @@ -368,9 +368,14 @@ def system_command(cmd):
def generate_apidoc():
"""Run Doxygen to generate all API documentation."""
git_pull()
os.chdir(os.path.join(builder.config.DISTRIB_DIR, '../doomsday/libdeng2'))

print >> sys.stderr, "\nSDK docs for Qt Creator..."
os.chdir(os.path.join(builder.config.DISTRIB_DIR, '../doomsday'))
system_command('doxygen sdk-qch.doxy >/dev/null 2>doxyissues-qch.txt')
system_command('wc -l doxyissues-qch.txt')

print >> sys.stderr, "\nPublic API 2.0 docs..."
os.chdir(os.path.join(builder.config.DISTRIB_DIR, '../doomsday/libdeng2'))
system_command('doxygen api2.doxy >/dev/null 2>../doxyissues-api2.txt')
system_command('wc -l ../doxyissues-api2.txt')

Expand Down

0 comments on commit a8d2263

Please sign in to comment.