mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 03:00:12 +00:00
1ce7059adb
For protocol buffer files, when there were gpb options to alter the module name with prefix or suffix, recompilation was not properly detected. This is now fixed. (Issue #384). Use the rebar_base_compiler's ability to specify both source and target file names, to be able to also support prefixes. This also introduces a call to gpb_compile:format_error, so the xref recipe needs to be updated to ignore it, to avoid false errors.
33 lines
1.2 KiB
Erlang
33 lines
1.2 KiB
Erlang
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
|
%% ex: ts=4 sw=4 ft=erlang et
|
|
|
|
%% escript_incl_extra is for internal rebar-private use only.
|
|
%% Do not use outside rebar. Config interface is not stable.
|
|
{escript_incl_extra, [{"priv/templates/*", "."}]}.
|
|
|
|
%% Types dict:dict() and digraph:digraph() have been introduced in Erlang 17.
|
|
%% At the same time, their counterparts dict() and digraph() are to be
|
|
%% deprecated in Erlang 18. namespaced_types option is used to select proper
|
|
%% type name depending on the OTP version used.
|
|
{erl_opts,
|
|
[
|
|
{platform_define, "^[0-9]+", namespaced_types}
|
|
]}.
|
|
|
|
{xref_checks, []}.
|
|
{xref_queries,
|
|
[{"(XC - UC) || (XU - X - B
|
|
- (\"escript\":\"foldl\"/\"3\")
|
|
- (\"eunit_test\":\"function_wrapper\"/\"2\")
|
|
- (\"eflame\":\"apply\"/\"5\")
|
|
- (\"abnfc\":\"file\"/\"2\")
|
|
- (\"erlydtl\":\"compile\"/\"3\")
|
|
- (\"lfe_comp\":\"file\"/\"2\")
|
|
- (\"neotoma\":\"file\"/\"2\")
|
|
- (\"protobuffs_compile\":\"scan_file\"/\"2\")
|
|
- (\"gpb_compile\":\"file\"/\"2\")
|
|
- (\"gpb_compile\":\"format_error\"/\"1\")
|
|
- (\"diameter_codegen\":\"from_dict\"/\"4\")
|
|
- (\"diameter_dict_util\":\"format_error\"/\"1\")
|
|
- (\"diameter_dict_util\":\"parse\"/\"2\"))",
|
|
[]}]}.
|