File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1
1
bin
2
+ /dist
Original file line number Diff line number Diff line change 28
28
<target name =" build" depends =" compile" description =" Build video library" >
29
29
<jar basedir =" bin" destfile =" library/video.jar" />
30
30
</target >
31
+
32
+ <target name =" dist" depends =" build" description =" Creates distribution package" >
33
+ <mkdir dir =" dist/tmp" />
34
+
35
+ <copy todir =" dist/tmp/library" >
36
+ <fileset dir =" library" />
37
+ </copy >
38
+
39
+ <copy todir =" dist/tmp/examples" >
40
+ <fileset dir =" examples" />
41
+ </copy >
42
+
43
+ <copy todir =" dist/tmp/src" >
44
+ <fileset dir =" src" />
45
+ </copy >
46
+
47
+ <zip destfile =" dist/video.zip"
48
+ basedir=" dist/tmp"
49
+ excludes=" **/.DS_Store"
50
+ />
51
+
52
+ <copy file =" library.properties" tofile =" dist/video.txt" />
53
+
54
+ <delete dir =" dist/tmp" />
55
+ </target >
31
56
</project >
You can’t perform that action at this time.
0 commit comments