25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

65 satır
1.9 KiB

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