rebar/ebin/rebar.app
Jon Meredith c5d877a934 Renamed app_installer to otp_app.
Added compile check for app name.
Added compile check for app modules

--HG--
rename : src/rebar_app_installer.erl => src/rebar_otp_app.erl
2009-11-30 11:12:25 -07:00

30 lines
946 B
Erlang

{application, rebar,
[{description, "Rebar: Erlang Build Tool"},
{vsn, "1"},
{modules, [ rebar_app_utils,
rebar_config,
rebar_core,
rebar_erlc_compiler,
rebar_file_utils,
rebar_log,
rebar_otp_app,
rebar_protobuffs_compiler,
rebar_rel_utils,
rebar_utils ]},
{registered, []},
{applications, [kernel,
stdlib,
sasl]},
{env, [
%% Default log level
{log_level, error},
%% Key/value list of base/default configuration used by
%% rebar_config during initialization
{default_config, [
{app_modules, [ rebar_protobuffs_compiler,
rebar_erlc_compiler,
rebar_otp_app ]}
]}
]}
]}.