forked from realm/realm-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtightdb.xml
More file actions
28 lines (24 loc) · 986 Bytes
/
tightdb.xml
File metadata and controls
28 lines (24 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0"?>
<?eclipse.ant.import?>
<project name="tightdb-example-gen" basedir="." default="generate-sources">
<property name="srcdir" value="src/com/tightdb" />
<property name="destdir" value="generated-sources" />
<property name="version" value="1.6" />
<path id="code-gen-classpath">
<pathelement location="libs/tightdb.jar"/>
<pathelement location="lib-sqlite/sqlite4java.jar"/>
</path>
<target name="generate-sources">
<echo message="${ant.project.name}: ${ant.file}" />
<javac source="${version}" target="${version}" srcdir="${srcdir}">
<classpath refid="code-gen-classpath"/>
<compilerarg value="-processor" />
<compilerarg value="io.realm.generator.CodeGenProcessor" />
<compilerarg value="-processorpath" />
<compilerarg value="libs/tightdb/tightdb-devkit.jar" />
<compilerarg value="-s" />
<compilerarg value="${destdir}" />
<compilerarg value="-proc:only" />
</javac>
</target>
</project>