Updating simpleapp template to use .app.src

This commit is contained in:
Dave Smith 2010-06-22 11:01:28 -06:00
parent c32d26f509
commit 823dc3065f
2 changed files with 1 additions and 17 deletions

View file

@ -1,16 +0,0 @@
{application, {{appid}},
[
{description, ""},
{vsn, "1"},
{modules, [
{{appid}}_app,
{{appid}}_sup
]},
{registered, []},
{applications, [
kernel,
stdlib
]},
{mod, { {{appid}}_app, []}},
{env, []}
]}.

View file

@ -1,4 +1,4 @@
{variables, [{appid, "myapp"}]}.
{template, "simpleapp.app", "ebin/{{appid}}.app"}.
{template, "simpleapp.app.src", "src/{{appid}}.app.src"}.
{template, "simpleapp_app.erl", "src/{{appid}}_app.erl"}.
{template, "simpleapp_sup.erl", "src/{{appid}}_sup.erl"}.