summaryrefslogtreecommitdiff
path: root/src/rebar_prv_app_builder.erl
blob: c4502e438c4bb0e7103e540529f4030a58e9f2ef (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
-module(rebar_prv_app_builder).

-behaviour(rebar_provider).

-export([init/1,
         do/1,
         build/2]).

-include("rebar.hrl").

-define(PROVIDER, compile).
-define(DEPS, [install_deps]).

%% ===================================================================
%% Public API
%% ===================================================================

-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
init(State) ->
    State1 = rebar_state:add_provider(State, #provider{name = ?PROVIDER,
                                                        provider_impl = ?MODULE,
                                                        bare = false,
                                                        deps = ?DEPS,
                                                        example = "rebar compile",
                                                        short_desc = "",
                                                        desc = "",
                                                        opts = []}),
    {ok, State1}.

-spec do(rebar_state:t()) -> {ok, rebar_state:t()} | relx:error().
do(State) ->
    Apps = rebar_state:apps_to_build(State),

    lists:foreach(fun(AppInfo) ->
                          ?INFO("Compiling ~s ~s~n", [rebar_app_info:name(AppInfo)
                                                     ,rebar_app_info:original_vsn(AppInfo)]),
                          _AppInfo1 = build(State, AppInfo)
                  end, Apps),

    rebar_lock:create(State),
    {ok, State}.

build(State, AppInfo) ->
    rebar_erlc_compiler:compile(State, rebar_app_info:dir(AppInfo)),
    {ok, AppInfo1} = rebar_otp_app:compile(State, AppInfo),
    AppInfo1.

%% ===================================================================
%% Internal functions
%% ===================================================================