diff options
Diffstat (limited to 'rebar.config')
-rw-r--r-- | rebar.config | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/rebar.config b/rebar.config index a250ce9..396c546 100644 --- a/rebar.config +++ b/rebar.config @@ -8,6 +8,9 @@ {erlware_commons, ".*", {git, "https://github.com/erlware/erlware_commons.git", {branch, "master"}}}, + {providers, ".*", + {git, "https://github.com/tsloughter/providers.git", + {branch, "master"}}}, {erlydtl, ".*", {git, "https://github.com/erlydtl/erlydtl.git", {tag, "0.9.0"}}}, @@ -22,6 +25,7 @@ %% Compiler Options ============================================================ {erl_opts, [{platform_define, "^[0-9]+", namespaced_types}, + {platform_define, "R14", no_callback_support}, debug_info, warnings_as_errors, inline]}. @@ -36,6 +40,6 @@ {erlydtl_opts, [{doc_root, "priv/templates"}, {compiler_options, [report, return, debug_info]}]}. {escript_incl_apps, - [getopt, erlware_commons, erlydtl]}. + [getopt, erlware_commons, erlydtl, providers]}. -{first_files, [rcl_provider]}. +{first_files, [rlx_provider]}. |