rebar/ebin/rebar.app

42 lines
1.2 KiB
Text
Raw Normal View History

2009-11-25 22:23:42 +00:00
{application, rebar,
[{description, "Rebar: Erlang Build Tool"},
2009-12-18 22:12:35 +00:00
{vsn, "2"},
{modules, [ rebar,
rebar_app_utils,
rebar_config,
rebar_core,
rebar_ct,
rebar_erlc_compiler,
rebar_eunit,
rebar_file_utils,
rebar_lfe_compiler,
rebar_log,
rebar_otp_app,
rebar_port_compiler,
rebar_protobuffs_compiler,
rebar_port_compiler,
2009-11-25 22:23:42 +00:00
rebar_rel_utils,
rebar_reltool,
rebar_utils ]},
2009-11-25 22:23:42 +00:00
{registered, []},
{applications, [kernel,
stdlib,
sasl]},
{env, [
%% Default log level
{log_level, error},
2009-12-02 12:15:35 +00:00
%% Processing modules
{modules, [
{app_dir, [ rebar_protobuffs_compiler,
rebar_erlc_compiler,
rebar_lfe_compiler,
rebar_port_compiler,
rebar_otp_app,
rebar_ct,
rebar_eunit]},
{rel_dir, [ rebar_reltool ]}
]}
2009-11-25 22:23:42 +00:00
]}
]}.