12345678910111213141516171819 |
- %%% -*- mode: erlang -*-
- %%% $Id$
- %%%
- {application, gproc,
- [
- {description, "GPROC"},
- {vsn, "0.01"},
- {id, "GPROC"},
- {modules, [
- %% TODO: fill in this list, perhaps
- ]
- },
- {registered, [ ] },
- %% NOTE: do not list applications which are load-only!
- {applications, [ kernel, stdlib ] },
- {mod, {gproc_app, []} }
- ]
- }.
|