[Pkg-javascript-commits] [jarisplayer] 47/80: Added build.hxml file to be able to easily build jaris using haxe from cli.

Jonas Smedegaard dr at jones.dk
Tue May 10 08:45:35 UTC 2016


This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository jarisplayer.

commit 9d8e7bca7d67517092153b8a03e9cb5f7d98761a
Author: jgmdev <jgmdev at gmail.com>
Date:   Thu Sep 11 10:43:51 2014 -0400

    Added build.hxml file to be able to easily build jaris using haxe from cli.
---
 .gitignore |  1 +
 README.md  | 10 ++++++++++
 build.hxml | 16 ++++++++++++++++
 3 files changed, 27 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..6c2973e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+project.hide
diff --git a/README.md b/README.md
index a8e5cbd..4227b68 100644
--- a/README.md
+++ b/README.md
@@ -46,3 +46,13 @@ help to maintain an up to date tool that adapts to todays multimedia demands.
 Using github you can fork the project, work on your changes, and send a pull request.
 
 Enjoy a totally free player ;-)
+
+##Compiling from source
+
+Install [haxe](http://haxe.org/) change to the directory where jaris sources reside
+and run:
+
+  haxe build.xml
+
+This will result on the JarisFLVPlayer.swf file which you can embed in your web sites
+as integrate as part of other projects.
diff --git a/build.hxml b/build.hxml
new file mode 100644
index 0000000..ae601a0
--- /dev/null
+++ b/build.hxml
@@ -0,0 +1,16 @@
+#integrate files to classpath
+-cp src
+
+#this class wil be used as entry point for your app.
+-main jaris.Main
+
+#Flash target
+-swf bin/JarisFLVPlayer.swf
+
+#Uncomment to enable debug
+#-debug
+
+#dead code elimination : remove unused code
+#"-dce no" : do not remove unused code
+#"-dce std" : remove unused code in the std lib (default)
+#"-dce full" : remove all unused code

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/jarisplayer.git



More information about the Pkg-javascript-commits mailing list