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.

58 line
1.8 KiB

15 年之前
15 年之前
15 年之前
15 年之前
15 年之前
  1. {application, rebar,
  2. [{description, "Rebar: Erlang Build Tool"},
  3. {vsn, "2"},
  4. {modules, [ rebar,
  5. rebar_app_utils,
  6. rebar_config,
  7. rebar_core,
  8. rebar_ct,
  9. rebar_deps,
  10. rebar_erlc_compiler,
  11. rebar_escripter,
  12. rebar_eunit,
  13. rebar_file_utils,
  14. rebar_lfe_compiler,
  15. rebar_erlydtl_compiler,
  16. rebar_log,
  17. rebar_otp_app,
  18. rebar_port_compiler,
  19. rebar_protobuffs_compiler,
  20. rebar_port_compiler,
  21. rebar_rel_utils,
  22. rebar_reltool,
  23. rebar_subdirs,
  24. rebar_utils ]},
  25. {registered, []},
  26. {applications, [kernel,
  27. stdlib,
  28. sasl]},
  29. {env, [
  30. %% Default log level
  31. {log_level, error},
  32. %% any_dir processing modules
  33. {any_dir_modules, [
  34. rebar_subdirs,
  35. rebar_deps
  36. ]},
  37. %% Dir specific processing modules
  38. {modules, [
  39. {app_dir, [
  40. rebar_protobuffs_compiler,
  41. rebar_erlc_compiler,
  42. rebar_lfe_compiler,
  43. rebar_erlydtl_compiler,
  44. rebar_port_compiler,
  45. rebar_otp_app,
  46. rebar_ct,
  47. rebar_eunit,
  48. rebar_escripter
  49. ]},
  50. {rel_dir, [
  51. rebar_reltool
  52. ]}
  53. ]}
  54. ]}
  55. ]}.