Skip to content

Commit fc0b71c

Browse files
committed
create the library folder if doesn't exist in ant build
Signed-off-by: Umair Khan <omerjerk@gmail.com>
1 parent 70fc0c5 commit fc0b71c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libraries/cardboard/build.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
</target>
1111

1212
<target name="build" depends="sdk_chatter,compile" description="Build cardboard library for Processing Android" >
13-
<jar basedir="bin" destfile="library/cardboard.jar" />
13+
<mkdir dir="library" />
14+
<jar basedir="bin" destfile="library/cardboard.jar" />
1415
</target>
1516

1617
<target name="sdk_chatter" unless="env.ANDROID_SDK">

0 commit comments

Comments
 (0)