2011-04-15 15:22:49 +00:00
|
|
|
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
|
|
|
%% ex: ts=4 sw=4 ft=erlang et
|
|
|
|
|
2012-06-17 20:57:33 +00:00
|
|
|
%% escript_incl_extra is for internal rebar-private use only.
|
|
|
|
%% Do not use outside rebar. Config interface is not stable.
|
2012-06-17 20:38:00 +00:00
|
|
|
{escript_incl_extra, [{"priv/templates/*", "."}]}.
|
2014-06-29 18:15:43 +00:00
|
|
|
|
2014-05-31 12:45:44 +00:00
|
|
|
%% Types dict:dict() and digraph:digraph() have been introduced in Erlang 17.
|
2014-06-29 18:15:43 +00:00
|
|
|
%% At the same time, their counterparts dict() and digraph() are to be
|
|
|
|
%% deprecated in Erlang 18. namespaced_types option is used to select proper
|
2014-07-13 13:12:09 +00:00
|
|
|
%% type name depending on the OTP version used.
|
2014-06-29 18:15:43 +00:00
|
|
|
{erl_opts,
|
|
|
|
[
|
2014-06-29 19:06:05 +00:00
|
|
|
{platform_define, "^[0-9]+", namespaced_types}
|
2014-06-29 18:15:43 +00:00
|
|
|
]}.
|
|
|
|
|
2012-04-02 15:01:39 +00:00
|
|
|
{xref_checks, []}.
|
|
|
|
{xref_queries,
|
2012-04-04 16:50:05 +00:00
|
|
|
[{"(XC - UC) || (XU - X - B
|
2012-04-02 15:01:39 +00:00
|
|
|
- (\"escript\":\"foldl\"/\"3\")
|
2012-08-31 20:20:22 +00:00
|
|
|
- (\"eunit_test\":\"function_wrapper\"/\"2\")
|
2014-08-02 13:37:28 +00:00
|
|
|
- (\"eflame\":\"apply\"/\"5\")
|
2012-04-04 16:50:05 +00:00
|
|
|
- (\"abnfc\":\"file\"/\"2\")
|
|
|
|
- (\"erlydtl\":\"compile\"/\"3\")
|
|
|
|
- (\"lfe_comp\":\"file\"/\"2\")
|
|
|
|
- (\"neotoma\":\"file\"/\"2\")
|
2012-11-13 04:40:35 +00:00
|
|
|
- (\"protobuffs_compile\":\"scan_file\"/\"2\")
|
2013-12-17 14:36:58 +00:00
|
|
|
- (\"gpb_compile\":\"file\"/\"2\")
|
2014-12-31 02:51:58 +00:00
|
|
|
- (\"gpb_compile\":\"format_error\"/\"1\")
|
2012-11-13 04:40:35 +00:00
|
|
|
- (\"diameter_codegen\":\"from_dict\"/\"4\")
|
|
|
|
- (\"diameter_dict_util\":\"format_error\"/\"1\")
|
|
|
|
- (\"diameter_dict_util\":\"parse\"/\"2\"))",
|
2012-04-04 16:50:05 +00:00
|
|
|
[]}]}.
|