Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

SMILA/Documentation/HowTo/Howto set up target platform

This page describes which steps you have to follow to manually define a target platform for SMILA.

How to manually set up the target platform

If you do not want to set up the target platform manually, please follow the instructions on Howto set up dev environment.

  1. Download the Eclipse SDK (if you have not already done so) from the Eclipse download page listed in the Setup Development Environment Preconditions section.
    • You should use the same Eclipse version as target SDK and as the development IDE.
    • Please note that it really should be the plain Eclipse SDK to prevent naughty problems when trying to start SMILA, because of conflicting bundles etc.
  2. Extract the Eclipse SDK to a directory you should name something like eclipse-target so you don't confuse it with your IDE's installation folder.

This directory will be referenced as "eclipse-target" in the following lines.

In your IDE do the following:

  1. Click Window --> Preferences --> Plug-in Development --> Target Platform.
  2. Click Add... --> Select "Nothing: Start with an empty target definition" for target initialization and click Next.
  3. Rename the new target, e.g. to "SMILA target".
  4. Click Add... --> Select "Installation" and click Next.
  5. Click Browse... and navigate to your "eclipse-target" directory --> click OK.
  6. Click Finish in the Add Installation window.
  7. Click Add... --> Select "Directory" --> Click Next --> Enter ${workspace_loc:/SMILA.extension/eclipse/plugins} --> click Finish.
  8. The target definition dialog should now contain the following entries:
    • Name: SMILA target
    • In page Locations the following entries:
      • Installation icon with path to your eclipse-target directory, showing the number of available plug-ins
      • Directory icon with path to the SMILA.extension/eclipse/plugins directory in your checked out SMILA code, showing the number of available plug-ins.
    • In page Content you can disable plug-ins which have different versions in the Eclipse target installation and the workspace as they can cause conflicts when running JUnit tests in the IDE. However, currently (pre-1.4 snapshots) that should not be necessary.
  9. Click Finish and activate the new target platform by checking the check box on the left-hand side of its name.
  10. Click OK.

Doing so will trigger the compilation of your workspace.

Back to the top