diff options
author | Tristan Sloughter <[email protected]> | 2014-06-15 19:18:14 -0500 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2014-10-11 11:13:04 -0500 |
commit | 0516b405ccb98febcf94a8e94000f4a633569f59 (patch) | |
tree | 08eb3c09943ac68a4493ff7e2fc5925842bc4627 /rebar.config | |
parent | 5096c28c17ea256f48ce049a43d11b172532e03e (diff) | |
download | relx-0516b405ccb98febcf94a8e94000f4a633569f59.tar.gz relx-0516b405ccb98febcf94a8e94000f4a633569f59.tar.bz2 relx-0516b405ccb98febcf94a8e94000f4a633569f59.zip |
provider task dependencies
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]}. |