compile.hxml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. #remoting
  2. -cp ..
  3. -main unit.RemotingServer
  4. -neko remoting.n
  5. #exe-runner
  6. --next
  7. -main RunExe
  8. -neko runexe.n
  9. #java-runner
  10. --next
  11. -main RunJava
  12. -neko runjava.n
  13. #each
  14. --next
  15. -D macro-times
  16. -debug
  17. -cp ..
  18. -resource res1.txt
  19. -resource res2.bin
  20. --no-opt
  21. -dce full
  22. --each
  23. #flash8
  24. -main unit.Test
  25. -swf-header 300:300:30:FFFFFF
  26. -swf-version 8
  27. -swf unit8.swf
  28. #flash9
  29. --next
  30. -main unit.Test
  31. -swf-version 11
  32. -swf unit9.swf
  33. #js
  34. --next
  35. unit.Test
  36. -js unit.js
  37. #neko
  38. --next
  39. -D neko_v2
  40. -main unit.Test
  41. -neko unit.n
  42. #macro
  43. --next
  44. -main unit.Test
  45. --interp
  46. #php
  47. --next
  48. -main unit.Test
  49. -php php
  50. #as3
  51. --next
  52. -main unit.Test
  53. -as3 as3
  54. -cmd mxmlc -static-link-runtime-shared-libraries=true -debug as3/__main__.as --output unit9_as3.swf
  55. #cpp
  56. --next
  57. -main unit.Test
  58. -cpp cpp
  59. -D NO_PRECOMPILED_HEADERS
  60. #java native build
  61. -cmd "haxelib run hxjava native_java/hxjava_build.txt --out native_java/native"
  62. #java
  63. --next
  64. -main unit.Test
  65. -java java
  66. -java-lib native_java/native.jar
  67. #cs
  68. --next
  69. -main unit.Test
  70. -cs cs
  71. #cs_unsafe
  72. --next
  73. -main unit.Test
  74. -D unsafe
  75. -cs cs_unsafe