123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #remoting
- -cp ..
- -main unit.RemotingServer
- -neko remoting.n
- #exe-runner
- --next
- -main RunExe
- -neko runexe.n
- #java-runner
- --next
- -main RunJava
- -neko runjava.n
- #each
- --next
- -D macro-times
- -debug
- -cp ..
- -resource res1.txt
- -resource res2.bin
- --no-opt
- -dce full
- --each
- #flash8
- -main unit.Test
- -swf-header 300:300:30:FFFFFF
- -swf-version 8
- -swf unit8.swf
- #flash9
- --next
- -main unit.Test
- -swf-version 11
- -swf unit9.swf
- #js
- --next
- unit.Test
- -js unit.js
- #neko
- --next
- -D neko_v2
- -main unit.Test
- -neko unit.n
- #macro
- --next
- -main unit.Test
- --interp
- #php
- --next
- -main unit.Test
- -php php
- #as3
- --next
- -main unit.Test
- -as3 as3
- -cmd mxmlc -static-link-runtime-shared-libraries=true -debug as3/__main__.as --output unit9_as3.swf
- #cpp
- --next
- -main unit.Test
- -cpp cpp
- -D NO_PRECOMPILED_HEADERS
- #java native build
- -cmd "haxelib run hxjava native_java/hxjava_build.txt --out native_java/native"
- #java
- --next
- -main unit.Test
- -java java
- -java-lib native_java/native.jar
- #cs
- --next
- -main unit.Test
- -cs cs
- #cs_unsafe
- --next
- -main unit.Test
- -D unsafe
- -cs cs_unsafe
|