-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.config
35 lines (29 loc) · 952 Bytes
/
build.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{extend, "init.config"}.
{extend, "deps/build_config/base.config"}.
{deps, [
{dh_date, ".*",
{git, "https://github.com/nebularis/dh_date.git"}},
{neotoma, ".*",
{git, "https://github.com/seancribbs/neotoma.git"}},
{semver, ".*",
{git, "https://github.com/nebularis/semver.git"}},
{annotations, ".*",
{git, "https://github.com/hyperthunk/annotations.git"}},
{delegate, ".*",
{git, "https://github.com/hyperthunk/delegate.git"}}
]}.
{neotoma_opts, [
{out_dir, "generated"},
{module_ext, "_grammar"},
{transform_module, ogql_ast_xform}
]}.
{erl_first_files, ["ogql_ast_xform"]}.
{erl_opts, [{src_dirs, ["src", "generated"]}]}.
{lib_dirs, ["deps",
"deps/annotations",
"deps/annotations/ebin",
"deps/delegate/ebin"]}.
{plugins, [build_plugin, rebar_plugin_manager, rebar_annotations_plugin]}.
{annotations, [
{registered, [delegate]}
]}.