Skip to content

Commit

Permalink
[eclipse] Fixing the invalid type of library for SARL Libraries.
Browse files Browse the repository at this point in the history
see #768

Signed-off-by: Stéphane Galland <galland@arakhne.org>
  • Loading branch information
gallandarakhneorg committed Oct 9, 2017
1 parent f807ebb commit 9d5a1c9
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -62,7 +62,9 @@ public SARLClasspathContainer(IPath containerPath) {

@Override
public int getKind() {
return K_APPLICATION;
// Must be K_SYSTEM in order to let the run-configuration launcher to replace the SARL
// libraries by the SRE libraries.
return K_SYSTEM;
}

@Override
Expand Down

0 comments on commit 9d5a1c9

Please sign in to comment.