mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-01 13:25:45 +02:00

Redo the javadoc build process to be based on tycho-document-bundle-plugin. It has the nice effect of whole api from cdt.core being in the built javadoc instead of the very few preselected bundles. Change-Id: I3fd33daaef2ef3bcbbc7ee7dabfe6a7262b7a87e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
26 lines
1.5 KiB
XML
26 lines
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project name="CDT ISV Doc Build" default="all" basedir="." >
|
|
|
|
<target name="all">
|
|
<antcall target="convertSchemaToHtml" />
|
|
<antcall target="build.index" />
|
|
</target>
|
|
|
|
<target name="build.index" description="Builds search index for the plug-in: org.eclipse.cdt.doc.isv" if="eclipse.running">
|
|
<help.buildHelpIndex manifest="${basedir}/plugin.xml" destination="${basedir}" />
|
|
</target>
|
|
|
|
<target name="convertSchemaToHtml" if="eclipse.running">
|
|
<property name="dest" value="reference/extension-points" />
|
|
<record name="${basedir}/cdtconvert.txt" action="start"/>
|
|
<pde.convertSchemaToHTML manifest="../../core/org.eclipse.cdt.core/plugin.xml" destination="${dest}" />
|
|
<pde.convertSchemaToHTML manifest="../../core/org.eclipse.cdt.ui/plugin.xml" destination="${dest}" />
|
|
<pde.convertSchemaToHTML manifest="../../debug/org.eclipse.cdt.debug.core/plugin.xml" destination="${dest}" />
|
|
<pde.convertSchemaToHTML manifest="../../build/org.eclipse.cdt.make.core/plugin.xml" destination="${dest}" />
|
|
<pde.convertSchemaToHTML manifest="../../build/org.eclipse.cdt.make.ui/plugin.xml" destination="${dest}" />
|
|
<pde.convertSchemaToHTML manifest="../../build/org.eclipse.cdt.managedbuilder.core/plugin.xml" destination="${dest}" />
|
|
<pde.convertSchemaToHTML manifest="../../build/org.eclipse.cdt.managedbuilder.ui/plugin.xml" destination="${dest}" />
|
|
<record name="${basedir}/cdtconvert.txt" action="stop"/>
|
|
</target>
|
|
|
|
</project>
|