mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
add hrl-triggered recompiling to 'eunit' build as well
This commit is contained in:
parent
1fa659b5b3
commit
badcc228bd
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@
|
||||||
clean/2]).
|
clean/2]).
|
||||||
|
|
||||||
%% make available for rebar_eunit until there is a better option
|
%% make available for rebar_eunit until there is a better option
|
||||||
-export([do_compile/8, compile_opts/2]).
|
-export([do_compile/8, compile_opts/2, list_hrls/2]).
|
||||||
|
|
||||||
-include("rebar.hrl").
|
-include("rebar.hrl").
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ eunit(Config, _File) ->
|
||||||
|
|
||||||
%% Compile all erlang from src/ into ?EUNIT_DIR
|
%% Compile all erlang from src/ into ?EUNIT_DIR
|
||||||
rebar_erlc_compiler:do_compile(Config, "src/*.erl", ?EUNIT_DIR, ".erl", ".beam",
|
rebar_erlc_compiler:do_compile(Config, "src/*.erl", ?EUNIT_DIR, ".erl", ".beam",
|
||||||
undefined, fun compile_erl/2,
|
fun rebar_erlc_compiler:list_hrls/2, fun compile_erl/2,
|
||||||
rebar_config:get_list(Config, erl_first_files, [])),
|
rebar_config:get_list(Config, erl_first_files, [])),
|
||||||
|
|
||||||
%% Build a list of all the .beams in ?EUNIT_DIR -- use this for cover
|
%% Build a list of all the .beams in ?EUNIT_DIR -- use this for cover
|
||||||
|
|
Loading…
Reference in a new issue