mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 05:39:18 +01:00
add notes to MovieMaker project
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user