mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
41 lines
1.2 KiB
XML
Executable File
41 lines
1.2 KiB
XML
Executable File
<?xml version="1.0"?>
|
|
<project name="Movie Maker Tool" default="build">
|
|
|
|
<!--
|
|
Originally based on code from this post:
|
|
http://www.randelshofer.ch/blog/2010/10/writing-quicktime-movies-in-pure-java
|
|
|
|
A more up-to-date version of the project seems to be here:
|
|
http://www.randelshofer.ch/monte/
|
|
If someone would like to help us update the encoder, that'd be great!
|
|
|
|
Broken out as a separate project because the license probably isn't
|
|
compatible with the rest of Processing and we don't want any confusion.
|
|
-->
|
|
|
|
<target name="clean" description="Clean the build directories">
|
|
<delete dir="bin" />
|
|
<delete dir="tool" />
|
|
</target>
|
|
|
|
<target name="compile" description="Compile sources">
|
|
<mkdir dir="bin" />
|
|
<javac target="1.6"
|
|
source="1.6"
|
|
srcdir="src"
|
|
destdir="bin"
|
|
encoding="UTF-8"
|
|
includeAntRuntime="false"
|
|
classpath="../../../../app/bin"
|
|
nowarn="true"
|
|
compiler="org.eclipse.jdt.core.JDTCompilerAdapter">
|
|
<compilerclasspath path="../../../../java/mode/ecj.jar" />
|
|
</javac>
|
|
</target>
|
|
|
|
<target name="build" depends="compile" description="Build Movie Maker Tool">
|
|
<mkdir dir="tool" />
|
|
<jar basedir="bin" destfile="tool/MovieMaker.jar" />
|
|
</target>
|
|
</project>
|