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