Skip to content

Commit c25bc08

Browse files
committed
updated build script and added library properties
1 parent 1174227 commit c25bc08

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.jar
2+
*.o
3+
*.DS_Store
4+
*.class

build.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88

99
<target name="compile" description="Compile sources">
1010
<condition property="core-built">
11-
<available file="../../../core/library/core.jar" />
11+
<available file="../processing/core/library/core.jar" />
1212
</condition>
13-
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../../../core/library/core.jar" />
13+
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../processing/core/library/core.jar" />
1414

1515
<mkdir dir="bin" />
1616
<javac source="1.7"
1717
target="1.7"
1818
srcdir="src" destdir="bin"
1919
encoding="UTF-8"
2020
includeAntRuntime="false"
21-
classpath="../../../core/library/core.jar; library/sound.jar"
21+
classpath="../processing/core/library/core.jar; library/sound.jar"
2222
nowarn="true"
2323
compiler="org.eclipse.jdt.core.JDTCompilerAdapter">
24-
<compilerclasspath path="../../mode/ecj.jar" />
24+
<compilerclasspath path="../processing/java/mode/ecj.jar" />
2525
</javac>
2626
</target>
2727

library.properties

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name = Sound
2+
authorList = The Processing Foundation
3+
url = http://processing.org/reference/libraries/sound/index.html
4+
category = Sound
5+
sentence = Sound library based on MethCla for Processing.
6+
paragraph =
7+
version = 1
8+
prettyVersion = 1.0
9+
minRevision = 0
10+
maxRevision = 0

0 commit comments

Comments
 (0)