diff options
Diffstat (limited to 'ide/nbproject/ide-targets.xml')
-rw-r--r-- | ide/nbproject/ide-targets.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ide/nbproject/ide-targets.xml b/ide/nbproject/ide-targets.xml new file mode 100644 index 0000000..da80935 --- /dev/null +++ b/ide/nbproject/ide-targets.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project basedir=".." name="sip-communicator-1.0-IDE"> + <import file="../build.xml"/> + <!-- TODO: edit the following target according to your needs --> + <!-- (more info: http://www.netbeans.org/kb/41/freeform-config.html#debugj2se) --> + <target description="Starts oscar and runs sip-comunicator gui (use latest build)." name="debug-nb"> + <!-- forking prevents from debugging--> + <nbjpdastart addressproperty="jpda.address" name="sip-communicator-1.0" transport="dt_socket"/> + <java classname="org.ungoverned.oscar.Main" classpathref="project.class.path" failonerror="true" fork="true"> + <!-- Sets the charset for the messages --> + <!--sysproperty key="icq.custom.message.charset" value="windows-1252"/--> + <!-- Tell oscar to run sip-communicator--> + <sysproperty key="oscar.config.properties" value="file:./lib/oscar.client.run.properties"/> + <!-- Tell java.util.logging about our logging preferences --> + <sysproperty key="java.util.logging.config.file" value="lib/logging.properties"/> + <!-- Setting LD_LIBRARY_PATH--> + <sysproperty key="java.library.path" value="${ld.library.path}"/> + <env key="LD_LIBRARY_PATH" value="${ld.library.path}"/> + <jvmarg value="-Xdebug"/> + <jvmarg value="-Xnoagent"/> + <jvmarg value="-Djava.compiler=none"/> + <jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.address}"/> + </java> + </target> +</project> |