1
0
mirror of https://github.com/ubf/ubf.git synced 2026-04-21 04:06:08 +00:00
Files
ubf/rebar.config
2014-05-11 17:47:18 +09:00

26 lines
887 B
Erlang

%%% -*- mode: erlang -*-
{require_min_otp_vsn, "R15"}.
{erl_first_files, ["src/contract_lex.erl"
, "src/contract_yecc.erl"
, "src/ubf_utils.erl"
, "src/contract_parser.erl"
, "src/ubf_types_builtin.erl"
]}.
{erl_opts, [warnings_as_errors, warn_shadow_vars, warn_obsolete_guard,
{platform_define, "R15A", 'old_callbacks'}]}.
{xrl_opts, [warnings_as_errors]}.
{yrl_opts, [warnings_as_errors]}.
{xref_checks, [undefined_function_calls, undefined_functions,
deprecated_function_calls, deprecated_functions]}.
{eunit_first_files, ["test/eunit/types_plugin.erl"]}.
{qc_first_files, ["test/eunit/types_plugin.erl"]}.
{deps, [{qc, "", {git, "git://github.com/norton/qc.git"}}
, {pmod_transform, "", {git, "git://github.com/ubf/pmod_transform.git"}}
]}.