config_debug.hxml 394 B

123456789101112131415161718
  1. #integrate files to classpath
  2. -cp src
  3. -cp Agora-common/src
  4. -cp db/src
  5. #haxe libraries for your app.
  6. dependencies.hxml
  7. Agora-common/dependencies.hxml
  8. #Generate source map and add debug information
  9. -debug
  10. #dead code elimination : remove unused code
  11. #"-dce no" : do not remove unused code
  12. #"-dce std" : remove unused code in the std lib (default)
  13. #"-dce full" : remove all unused code
  14. -dce std