build.properties 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # You can override the default settings by editing this file.
  2. # Alternatively, you can specify them on the ant command line with -D flags.
  3. # For example: ant -Denable-xml=false
  4. # This optional file is a handy place to put your settings.
  5. # Not only is it more convenient than using -D on the command line,
  6. # eventually we may use the dependset task to check these settings.
  7. # Where to build the Kawa class files and other temporary files.
  8. # The default is the current directory as given by ${user.dir}.
  9. # You may need to override this if your JVM doesn't set the user.dir property.
  10. # Uncommenting the following leaves the temporaries in the build
  11. # subirectory of the directory containing build.xml.
  12. # build.dir=${basedir}/build
  13. # The version label is reported by Kawa and goes into the jar name.
  14. # The default is ${version.release}${version.local}.
  15. # You should probably override version.local instead of version.
  16. # version=1.x.y
  17. # version.local=-mypatch1
  18. # Where to leave the Kawa jar file.
  19. # The default is ${build.dir}/kawa-${version}.jar
  20. # dist.kawa.jar=kawa.jar
  21. # Jikes is much faster than javac.
  22. # Ant's batch script doesn't choose it automagically when
  23. # JIKESPATH is set, contrary to what the comments say.
  24. # You can either fix your ant.bat script, or uncomment this:
  25. # build.compiler=jikes
  26. # Whether to compile Kawa's AWT interface.
  27. # The default is to use AWT if java.awt.Component is in the classpath.
  28. # Uncomment the following line to not use AWT:
  29. # with-awt=false
  30. # Uncomment the following line to force use of AWT:
  31. # with-awt=true
  32. # Whether to use SAX2.
  33. #ignored if enable-xml is false.
  34. # The default is to use it if org.xml.sax.ContentHandler is available.
  35. # Uncomment the following line to not use SAX2:
  36. # with-sax2=false
  37. # Uncomment the following line to force use of SAX2:
  38. # with-sax2=true
  39. # Whether to compile Kawa's Swing interface.
  40. # The default is to use Swing if javax.swing.JComponent is in the classpath.
  41. # Uncomment the following line to not use Swing:
  42. # with-swing=false
  43. # Uncomment the following line to force use of Swing:
  44. # with-swing=true
  45. # Whether to compile JEmacs and ELisp support.
  46. # The default is to not build JEmacs.
  47. # Uncomment the following line to not compile JEmacs:
  48. # enable-jemacs=false
  49. # Uncomment the following line to enable compilation of JEmacs:
  50. # enable-jemacs=true
  51. # Whether to compile BRL and KRL support.
  52. # The default is to not build BRl/KRL support.
  53. # Uncomment the following line to enable BRl/KRL support.
  54. # enable-brl=true
  55. # Whether to compile Kawa's XML/HTML support classes.
  56. # The default is true.
  57. # Uncomment the following line to not compile the XML support:
  58. # enable-xml=false
  59. # Uncomment the following line to force compilation of the XML support.
  60. # enable-xml=true
  61. # Whether to compile Kawa's servlet interface.
  62. # The default is true if javax.servlet.http.HttpServlet is in the classpath.
  63. # Uncomment the following line to not compile the servlet interface:
  64. # enable-servlet=false
  65. # Uncomment the following line to force compilation of the servlet interface:
  66. # enable-servlet=true
  67. # Set preprocess.overwrite true to force preprocessing.
  68. # preprocess.overwrite=true
  69. # Extra path for android.jar, used if enable.android.
  70. android.path=${env.ANDROID_HOME}/platforms/${env.ANDROID_PLATFORM}/android.jar
  71. # Shell to use for the kawa wrapper script.
  72. # Defaults to /bin/bash if available; otherwise /bin/sh.
  73. # kawa.shell=/bin/ksh