Current section

Files

Jump to
erlang_otp_odbc rebar.config
Raw

rebar.config

{plugins, [rebar3_hex, rebar3_ex_doc]}.
{erl_opts, [debug_info]}.
{pre_hooks, [
{"(linux|darwin|solaris)", compile, "make -C c_src"},
{"(freebsd|openbsd|netbsd)", compile, "gmake -C c_src"},
{"win32", compile, "c_src\\build_or_fetch_win.bat"}
]}.
{post_hooks, [
{"(linux|darwin|solaris)", clean, "make -C c_src clean"},
{"(freebsd|openbsd|netbsd)", clean, "gmake -C c_src clean"},
{"win32", clean, "if exist priv\\bin\\odbcserver.exe del priv\\bin\\odbcserver.exe"}
]}.
{deps, []}.
{profiles, [
{test, [
{erl_opts, [debug_info, nowarn_export_all]}
]}
]}.
{ct_opts, [
{readable, true}
]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"CHANGELOG.md", #{title => "Changelog"}},
{"doc/guides/introduction.md", #{title => "Introduction"}},
"doc/guides/databases.md",
"doc/guides/error_handling.md",
"doc/guides/getting_started.md"
]},
{main, "README.md"},
{homepage_url, "https://github.com/rnowak/erlang-otp-odbc"},
{source_url, "https://github.com/rnowak/erlang-otp-odbc"},
{source_ref, "master"},
{output, "_build/default/doc"},
{dir, "_build/default/doc"}
]}.