diff options
Diffstat (limited to 'src/rebar_asn1_compiler.erl')
-rw-r--r-- | src/rebar_asn1_compiler.erl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/rebar_asn1_compiler.erl b/src/rebar_asn1_compiler.erl index 750ff41..bd16813 100644 --- a/src/rebar_asn1_compiler.erl +++ b/src/rebar_asn1_compiler.erl @@ -36,18 +36,19 @@ %% Public API %% =================================================================== --spec compile(Config::#config{}, AppFile::string()) -> 'ok'. +-spec compile(Config::rebar_config:config(), AppFile::file:filename()) -> 'ok'. compile(Config, _AppFile) -> rebar_base_compiler:run(Config, filelib:wildcard("asn1/*.asn1"), "asn1", ".asn1", "src", ".erl", fun compile_asn1/3). --spec clean(Config::#config{}, AppFile::string()) -> 'ok'. +-spec clean(Config::rebar_config:config(), AppFile::file:filename()) -> 'ok'. clean(_Config, _AppFile) -> rebar_file_utils:delete_each(asn_generated_files("asn1", "src")), ok. --spec compile_asn1(string(), string(), #config{}) -> ok. +-spec compile_asn1(file:filename(), file:filename(), + rebar_config:config()) -> ok. compile_asn1(Source, Target, Config) -> ok = rebar_utils:ensure_dir(Target), Opts = [{outdir, "src"}, noobj] ++ rebar_config:get(Config, asn1_opts, []), |