diff options
author | Adam Kocoloski <adam@cloudant.com> | 2010-08-11 16:56:51 -0400 |
---|---|---|
committer | Adam Kocoloski <adam@cloudant.com> | 2010-08-11 17:39:38 -0400 |
commit | 35da277fe75b2786952dbfb867cf60bdaab5f65d (patch) | |
tree | 928e44620e2a3248550509c4571d791a393f5f36 /rel/reltool.config | |
parent | ad7099a4e3f3d2035e3e26419a633b4bb1ce7b7c (diff) |
replace autotools with rebar
Diffstat (limited to 'rel/reltool.config')
-rw-r--r-- | rel/reltool.config | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/rel/reltool.config b/rel/reltool.config new file mode 100644 index 00000000..0ee91698 --- /dev/null +++ b/rel/reltool.config @@ -0,0 +1,31 @@ +{sys, [ + {lib_dirs, ["../apps"]}, + {rel, "dbcore", "1.2.4", [ + kernel, + stdlib, + sasl, + crypto, + ssl, + inets, + xmerl, + runtime_tools, + mochiweb, + ibrowse, + oauth, + couch + ]}, + {rel, "start_clean", "", [kernel, stdlib]}, + {boot_rel, "dbcore"}, + {profile, embedded}, + {excl_sys_filters, ["^bin/.*", "^erts.*/bin/(dialyzer|typer)"]}, + {excl_archive_filters, [".*"]}, + {app, sasl, [{incl_cond, include}]}, + {app, mochiweb, [{incl_cond, include}]}, + {app, ibrowse, [{incl_cond, include}]}, + {app, oauth, [{incl_cond, include}]}, + {app, couch, [{incl_cond, include}]} +]}. + +{overlay, [ + {copy, "overlay/var"} +]}. |