add notes to MovieMaker project

This commit is contained in:
Ben Fry
2013-09-22 13:50:58 -04:00
parent 716f3f84b3
commit 837caa5725

View File

@@ -1,22 +1,23 @@
<?xml version="1.0"?>
<project name="Processing Net Library" default="build">
<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/
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" />
<!--
<delete file="tool/MovieMaker.jar" />
-->
</target>
<target name="compile" description="Compile sources">
<!--
<condition property="core-built">
<available file="../../../core/core.jar" />
</condition>
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../../../core/core.jar" />
-->
<target name="compile" description="Compile sources">
<mkdir dir="bin" />
<javac target="1.6"
source="1.6"