To specify the classpath for your installed application, click on the ellipsis ("...") and enter each classpath entry on a separate line.

If your launcher will always be executed from within the directory where it is created, then you can specify relative paths to your classpath entries from that location. For example:
    app/MyApp.jar
    "app libs/MyLib.jar"
If your launcher could be executed from any working directory, then you should provide absolute paths in your classpath entries using string resolution. For example:
    "$P(appFiles.absoluteInstallLocation)/MyApp.jar"
    "$P(libFiles.absoluteInstallLocation)/MyLib.jar"
There should be one classpath entry per line. Do not include class path separators, as these are automatically added by the MultiPlatform launcher.

NOTE: When specifying classpath entries that include spaces, enclose each entry in double quotes. When using string resolution to provide an absolute path to a classpath entry, always enclose it in double quotes because the end user could install your product to a path that contains spaces.