summaryrefslogtreecommitdiff
path: root/deps/setup/rebar.config
blob: 3f739dc0008c5fcedd47e1ab4a0a4d60698a26d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%% -*- erlang -*-
{erl_opts, [debug_info]}.
{deps, [{edown, ".*", {git, "git://github.com/uwiger/edown.git", "HEAD"}}]}.
{edoc_opts, [{doclet, edown_doclet},
             {app_default, "http://www.erlang.org/doc/man"},
             {top_level_readme,
              {"./README.md",
               "http://github.com/uwiger/setup"}}]}.
{escript_name, setup_gen}.
{post_hooks, [{compile, "make escriptize"}]}.

%% This line is to ensure that any erl_first_files setting from
%% 'above' isn't accidentally inherited, since there seems to be
%% a strange interaction between SNMP MIB compilation and escriptize.
{erl_first_files, []}.