Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2017-06-21 09:28:47 +0000
committerAlexander Kurtakov2017-06-21 09:31:15 +0000
commit902a7ae9e878c6252c2e133bea704279a4088849 (patch)
tree932cb936e05b316f6af534432963cda70d7abc05 /eclipse.platform.releng.tychoeclipsebuilder
parent7ca4686968e77a9ac9fdbd4d13c9a366f73740ff (diff)
downloadeclipse.platform.releng.aggregator-902a7ae9e878c6252c2e133bea704279a4088849.tar.gz
eclipse.platform.releng.aggregator-902a7ae9e878c6252c2e133bea704279a4088849.tar.xz
eclipse.platform.releng.aggregator-902a7ae9e878c6252c2e133bea704279a4088849.zip
Bug 518559 - Remove content about setting java.library.path for running
swt from downloads page Not needed since 3.3. Change-Id: I187e67f3a76a78e56e7e53171b51f636615460b2 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder')
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/details.html8
1 files changed, 1 insertions, 7 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/details.html b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/details.html
index 4e9b25bac..a3434576f 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/details.html
+++ b/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/details.html
@@ -203,14 +203,8 @@
standalone SWT applications refer to the <a href=" http://www.eclipse.org/swt/snippets/">snippets</a> section of the
SWT Component page.
</p>
- <p>To run a standalone SWT application, add the swt jar(s) to the classpath and add the directory/folder for the
- SWT JNI library to the java.library.path. For example, if you extract the download below to C:\SWT you would launch
+ <p>To run a standalone SWT application, add the swt jar(s) to the classpath. For example, if you extract the download below to C:\SWT you would launch
the HelloWorld application with the following command:</p>
- <p>java -classpath C:\SWT\swt.jar;C:\MyApp\helloworld.jar -Djava.library.path=C:\SWT HelloWorld</p>
- <p>
- <b>Note that if you are running on Eclipse 3.3 or later</b>, you do not need to specify the library path, so you
- would launch the HelloWorld application with the following command:
- </p>
<p>java -classpath C:\SWT\swt.jar;C:\MyApp\helloworld.jar HelloWorld</p>
<p>
To run the standalone SWT examples that are shipped with Eclipse, download them from <a

Back to the top