diff options
author | Alexey Romanov <alexey.v.romanov@gmail.com> | 2011-02-21 12:41:20 +0300 |
---|---|---|
committer | Alexey Romanov <alexey.v.romanov@gmail.com> | 2011-02-21 12:41:20 +0300 |
commit | 7dc371d8a3b9a6e2ab9f814c0d2536cf638ceb99 (patch) | |
tree | 174193ae08d2824164ba99e63f696a6593ee63c6 /rebar.config.sample | |
parent | 2ceeb3272139b7569c8dabc215ca1e7063b0d385 (diff) | |
parent | 6056c63eed288736c912c82d6f36aa7dd055f9ca (diff) |
Merge branch 'master' of https://github.com/basho/rebar
Diffstat (limited to 'rebar.config.sample')
-rw-r--r-- | rebar.config.sample | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/rebar.config.sample b/rebar.config.sample index f963c30..184c16d 100644 --- a/rebar.config.sample +++ b/rebar.config.sample @@ -1,4 +1,4 @@ -%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*- +%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*- %% ex: ts=4 sw=4 ft=erlang et %% This is a sample rebar.conf file that shows examples of some of rebar's %% options. @@ -31,7 +31,8 @@ {erl_opts, [{i, "myinclude"}, {src_dirs, ["src1", "src2"]}, {platform_define, "(linux|solaris|freebsd|darwin)", 'HAVE_SENDFILE'}, - {platform_define, "(linux|freebsd)", 'BACKLOG', 128}]}. + {platform_define, "(linux|freebsd)", 'BACKLOG', 128}, + {platform_define, "R13", 'old_inets'}]}. %% MIB Options? {mib_opts, []}. @@ -85,6 +86,9 @@ %% Additional compile options for eunit. erl_opts from above is also used {eunit_compile_opts, []}. +%% Same as erl_first_files, but used only when running 'eunit' +{eunit_first_files, []}. + %% Whether to enable coverage reporting. Default is `false' {cover_enabled, false}. |