An IDL runtime mode application is a program or set of programs written to use IDL’s data analysis and display capabilities in a stand-alone mode, without access to the IDL Workbench, the IDL command line, or the ability to compile IDL .pro files. All IDL code for a runtime mode application must be pre-compiled and provided in the binary SAVE file format. If a runtime mode application presents a user interface, it must be exposed via the IDL widget toolkit functionality, since no access to the IDL command line or command output log is provided to the user.

Runtime mode applications are generally intended for users who do not have an IDL development license, although users who do have a development license can execute runtime mode applications as well. Typically, a runtime mode application is distributed along with an IDL distribution hierarchy containing all of the files necessary to run the application. (The exception is an application written to be run in the IDL Virtual Machine, which is installed separately from the IDL application itself.)

IDL applications written to run with an IDL development license (one that allows the application to compile .pro files and access to the IDL command line) can be distributed to other IDL users. Distributing applications that run with an IDL development license can be as simple as providing the application files to the end user along with instructions describing how to install the files and configure the application.

This section describes the process of packaging an application written entirely in IDL so that it can be distributed to end users who do not have an IDL development license. The following sections describe the process of packaging an application to run in the IDL Virtual Machine and packaging a callable IDL application. Much of this information is relevant whether or not your application end users have an IDL development license, but the assumption is that your end user will not have such a license.

Steps to Distribute a Runtime Application


  1. Create your application using an IDL development license. Test the application using the type of license you expect your end user to have.
  2. If your application uses callable IDL, see Distributing Callable IDL Applications for information on creating a runtime distribution.
  3. Decide on a licensing option and obtain licenses for your application.
  4. Create an application distribution.
  5. Create invocation and use instructions for your application.
  6. Create an optional installer and installation instructions for your application.