You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.1 KiB

15 years ago
15 years ago
15 years ago
15 years ago
  1. {application, rebar,
  2. [{description, "Rebar: Erlang Build Tool"},
  3. {vsn, "1"},
  4. {modules, [ rebar,
  5. rebar_app_utils,
  6. rebar_config,
  7. rebar_core,
  8. rebar_ct,
  9. rebar_erlc_compiler,
  10. rebar_eunit,
  11. rebar_file_utils,
  12. rebar_log,
  13. rebar_otp_app,
  14. rebar_port_compiler,
  15. rebar_protobuffs_compiler,
  16. rebar_port_compiler,
  17. rebar_rel_utils,
  18. rebar_reltool,
  19. rebar_utils ]},
  20. {registered, []},
  21. {applications, [kernel,
  22. stdlib,
  23. sasl]},
  24. {env, [
  25. %% Default log level
  26. {log_level, error},
  27. %% Processing modules
  28. {modules, [
  29. {app_dir, [ rebar_protobuffs_compiler,
  30. rebar_erlc_compiler,
  31. rebar_port_compiler,
  32. rebar_otp_app,
  33. rebar_ct,
  34. rebar_eunit]},
  35. {rel_dir, [ rebar_reltool ]}
  36. ]}
  37. ]}
  38. ]}.