Skip to main content
summaryrefslogtreecommitdiffstats
blob: 12ee3262faa9848c1170f73b95764130edbbfcb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<project name="project" default="default">

	<description>
            description
    </description>

	<path id="fxcompile">
		<filelist>
			<file name="bin" />
			<file name="blibs/org.eclipse.fx.fxml.compiler_1.0.0-SNAPSHOT.jar" />
		</filelist>
	</path>

	<taskdef name="fxml-compiler" classpathref="fxcompile" classname="org.eclipse.fx.ide.fxml.compiler.ant.FXMLCompilerTask" />	

	<target name="default" description="Generate Java Code from FXML">
		<fxml-compiler sourcedir="src" destdir="src-gen"/>
	</target>

</project>

Back to the top