config_debug.hxml 383 B

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