Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

41 rader
1.5 KiB

10 år sedan
  1. %% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
  2. %% ex: ts=4 sw=4 ft=erlang et
  3. %% escript_incl_extra is for internal rebar-private use only.
  4. %% Do not use outside rebar. Config interface is not stable.
  5. {escript_incl_extra, [{"priv/templates/*", "."}, {"rebar/include/*", "."}]}.
  6. {escript_incl_apps,
  7. [inets, getopt, erlydtl, erlware_commons, relx, providers, rebar]}.
  8. {escript_top_level_app, rebar}.
  9. {escript_name, rebar3}.
  10. {erl_opts,
  11. [{platform_define, "^[0-9]+", namespaced_types},
  12. {platform_define, "^R1[4|5]", deprecated_crypto},
  13. debug_info,
  14. warnings_as_errors]}.
  15. %% Types dict:dict() and digraph:digraph() have been introduced in Erlang 17.
  16. %% At the same time, their counterparts dict() and digraph() are to be
  17. %% deprecated in Erlang 18. namespaced_types option is used to select proper
  18. %% type name depending on the OTP version used.
  19. {erl_opts,
  20. [
  21. {platform_define, "^[0-9]+", namespaced_types}
  22. ]}.
  23. {deps, [
  24. {erlware_commons, ".*",
  25. {git, "https://github.com/erlware/erlware_commons.git",
  26. {branch, "master"}}},
  27. {providers, "",
  28. {git, "https://github.com/tsloughter/providers.git",
  29. {branch, "format_error1"}}},
  30. {relx, "",
  31. {git, "https://github.com/tsloughter/relx.git",
  32. {branch, "format_error1"}}},
  33. {getopt, "", {git, "https://github.com/jcomellas/getopt.git", {branch, "master"}}}]}.
  34. {erlydtl_opts, [{doc_root, "priv/templates"},
  35. {compiler_options, [report, return, debug_info]}]}.