forked from jalal70/readium-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
20 lines (16 loc) · 703 Bytes
/
build.xml
File metadata and controls
20 lines (16 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<!-- Build file for the Shared JS API Doc -->
<project name="org.readium.core-api-docs" default="generate.docs" basedir=".">
<property name="config.file" value="doxyfile" />
<property name="out.dir" value="./core-api-docs" />
<!-- this generates the API docs -->
<target name ="generate.docs" depends="clean" description="Invoke doxygen to generate the docs" >
<exec executable="doxygen" spawn="false">
<arg value="${config.file}" />
</exec>
</target>
<!-- This simply cleans out the output directory -->
<target name="clean" description="Clean the output folder">
<delete dir="${out.dir}"/>
</target>
</project>