comparison mxtool/mx.py @ 14916:66e9855f4ae8

Add -source -bootclasspath and -extdirs arguments to javadoc command
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 15:31:37 +0200
parents 32121774dfea
children 3e06a56ab0e6
comparison
equal deleted inserted replaced
14915:32121774dfea 14916:66e9855f4ae8
3693 windowTitle = [] 3693 windowTitle = []
3694 if stdDoclet: 3694 if stdDoclet:
3695 windowTitle = ['-windowtitle', p.name + ' javadoc'] 3695 windowTitle = ['-windowtitle', p.name + ' javadoc']
3696 try: 3696 try:
3697 log('Generating {2} for {0} in {1}'.format(p.name, out, docDir)) 3697 log('Generating {2} for {0} in {1}'.format(p.name, out, docDir))
3698 projectJava = java(p.javaCompliance)
3698 run([java().javadoc, memory, 3699 run([java().javadoc, memory,
3699 '-XDignore.symbol.file', 3700 '-XDignore.symbol.file',
3700 '-classpath', cp, 3701 '-classpath', cp,
3701 '-quiet', 3702 '-quiet',
3702 '-d', out, 3703 '-d', out,
3703 '-overview', overviewFile, 3704 '-overview', overviewFile,
3704 '-sourcepath', sp] + 3705 '-sourcepath', sp,
3706 '-source', str(projectJava.javaCompliance),
3707 '-bootclasspath', projectJava.bootclasspath(),
3708 '-extdirs', projectJava.extdirs()] +
3705 links + 3709 links +
3706 extraArgs + 3710 extraArgs +
3707 nowarnAPI + 3711 nowarnAPI +
3708 windowTitle + 3712 windowTitle +
3709 list(pkgs)) 3713 list(pkgs))