ide-file-targets.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project basedir=".." name="Kawa-IDE">
  3. <!-- TODO: edit the following target according to your needs -->
  4. <!-- (more info: http://www.netbeans.org/kb/41/freeform-config.html#runsingle) -->
  5. <target name="run-selected-file-in-work3">
  6. <fail unless="run.class">Must set property 'run.class'</fail>
  7. <ant antfile="build.xml" inheritall="false" target="classes"/>
  8. <java classname="${run.class}" failonerror="true" fork="true">
  9. <classpath>
  10. <!-- TODO configure the runtime classpath for your project here: -->
  11. </classpath>
  12. </java>
  13. </target>
  14. <!-- TODO: edit the following target according to your needs -->
  15. <!-- (more info: http://www.netbeans.org/kb/41/freeform-config.html#runsingle) -->
  16. <target name="debug-selected-file-in-work3">
  17. <fail unless="debug.class">Must set property 'debug.class'</fail>
  18. <ant antfile="build.xml" inheritall="false" target="classes"/>
  19. <path id="cp">
  20. <!-- TODO configure the runtime classpath for your project here: -->
  21. </path>
  22. <nbjpdastart addressproperty="jpda.address" name="Kawa" transport="dt_socket">
  23. <classpath refid="cp"/>
  24. </nbjpdastart>
  25. <java classname="${debug.class}" fork="true">
  26. <classpath refid="cp"/>
  27. <jvmarg value="-Xdebug"/>
  28. <jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.address}"/>
  29. </java>
  30. </target>
  31. </project>