Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2016-07-18 12:02:35 +0000
committerMarkus Keller2016-07-18 12:02:35 +0000
commit444d5bbc2b44b619733a9fa9f5a9cbf7fd53aeea (patch)
tree89bc982c38094a72812321eb8f0b5b56f834f95b
parent13492d4e9ebaeb87873b9341f7209c3936552433 (diff)
downloadeclipse.platform.swt-444d5bbc2b44b619733a9fa9f5a9cbf7fd53aeea.tar.gz
eclipse.platform.swt-444d5bbc2b44b619733a9fa9f5a9cbf7fd53aeea.tar.xz
eclipse.platform.swt-444d5bbc2b44b619733a9fa9f5a9cbf7fd53aeea.zip
Bug 497558: Add minimal Readme.md to org.eclipse.swt for setting the classpath
-rw-r--r--README.md10
-rw-r--r--bundles/org.eclipse.swt/Readme.md19
-rw-r--r--examples/org.eclipse.swt.snippets/Readme.md12
3 files changed, 21 insertions, 20 deletions
diff --git a/README.md b/README.md
index 72fda4a0fa..2b8e185ea3 100644
--- a/README.md
+++ b/README.md
@@ -8,32 +8,32 @@ Developer resources:
Information regarding source code management, builds, coding standards, and more.
-- https://projects.eclipse.org/projects/eclipse.platform.swt/developer
+- <https://projects.eclipse.org/projects/eclipse.platform.swt/developer>
Contributor License Agreement:
------------------------------
Before your contribution can be accepted by the project, you need to create and electronically sign the Eclipse Foundation Contributor License Agreement (CLA).
-- http://www.eclipse.org/legal/CLA.php
+- <http://www.eclipse.org/legal/CLA.php>
Contact:
--------
Contact the project developers via the project's "dev" list.
-- https://dev.eclipse.org/mailman/listinfo/platform-swt-dev
+- <https://dev.eclipse.org/mailman/listinfo/platform-swt-dev>
Search for bugs:
----------------
This project uses Bugzilla to track ongoing development and issues.
-- https://bugs.eclipse.org/bugs/buglist.cgi?product=Platform
+- <https://bugs.eclipse.org/bugs/buglist.cgi?product=Platform&component=SWT>
Create a new bug:
-----------------
Be sure to search for existing bugs before you create another one. Remember that contributions are always welcome!
-- https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Platform
+- <https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Platform&component=SWT>
diff --git a/bundles/org.eclipse.swt/Readme.md b/bundles/org.eclipse.swt/Readme.md
index 953641ebe2..0fd6c5fdba 100644
--- a/bundles/org.eclipse.swt/Readme.md
+++ b/bundles/org.eclipse.swt/Readme.md
@@ -6,26 +6,27 @@ Main plug-in for the SWT user interface library.
Setting the classpath:
----------------------
-To compile this project you need to set the classpath specific for your operating and windowing system.
-For this, rename one of the following files to .classpath.
+To compile this project, you need to set the classpath specific for your operating and windowing system.
+For this, rename one of the following files to `.classpath`:
* .classpath_win32 - Windows
-* .classpath_cocoa - Mac OS
+* .classpath_cocoa - Mac OS X
* .classpath_gtk - Linux and all Unix variants
-To see these files you may have to remove the filter for .file in the Project Explorer.
-Use the view menu and Custimize View entry for this.
+To see these files, you may have to remove the filter for ".* resources":
+* In the Project Explorer: view menu > Customize View... > Filters
+* In the Package Explorer: view menu > Filters...
Dependencies:
-------------
-You also need to clone https://git.eclipse.org/r/#/admin/projects/platform/eclipse.platform.swt.binaries git repository
-and ensure that the fragment matching your windowing_system.operating_system.cpu_architecture (e.g. org.eclipse.swt.gtk.linux.x86_64).
-The fragments provide the platform specific implementations.
+You also need to clone the <https://git.eclipse.org/r/#/admin/projects/platform/eclipse.platform.swt.binaries> Git repository
+and ensure that the fragment matching your windowing_system.operating_system.cpu_architecture (e.g. org.eclipse.swt.gtk.linux.x86_64) is open in your workspace.
+The fragments provide the platform-specific native libraries.
More Information:
-----------------
-See the Readme.md in the main directory of the Git repository for this project to learn more about SWT development.
+See the [Readme.md](../../Readme.md) in the main directory of the Git repository for this project to learn more about SWT development.
diff --git a/examples/org.eclipse.swt.snippets/Readme.md b/examples/org.eclipse.swt.snippets/Readme.md
index d6dec6e09d..81ec1e1dd8 100644
--- a/examples/org.eclipse.swt.snippets/Readme.md
+++ b/examples/org.eclipse.swt.snippets/Readme.md
@@ -6,13 +6,13 @@ Small examples for the usage of SWT.
Setting the classpath:
----------------------
-To compile this project you need to set the classpath specific for your operating and windowing system.
-For this, rename one of the following files to .classpath.
+To compile this project, you need to set the classpath specific for your operating and windowing system.
+For this, rename one of the following files to `.classpath`:
* .classpath_win32 - Windows
-* .classpath_cocoa - Mac OS
+* .classpath_cocoa - Mac OS X
* .classpath_gtk - Linux and all Unix variants
-To see these files you may have to remove the filter for .file in the Project Explorer.
-Use the view menu and Custimize View entry for this.
-
+To see these files, you may have to remove the filter for ".* resources":
+* In the Project Explorer: view menu > Customize View... > Filters
+* In the Package Explorer: view menu > Filters...

Back to the top