Packages

Create or join UF2 binaries, for example for Raspberry Pi Pico

Current section

Files

Jump to
uf2tool rebar.config
Raw

rebar.config

%
% This file is part of uf2tool
%
% Copyright 2024 Paul Guyot <pguyot@kallisys.net>
%
% Licensed under the Apache License, Version 2.0 (the "License");
% you may not use this file except in compliance with the License.
% You may obtain a copy of the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS,
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
% See the License for the specific language governing permissions and
% limitations under the License.
%
% SPDX-License-Identifier: Apache-2.0
{erl_opts, [no_debug_info]}.
{deps, []}.
{ex_doc, [
{source_url, <<"https://github.com/pguyot/uf2tool">>},
{extras, [<<"README.md">>, <<"LICENSE.md">>, <<"CHANGELOG.md">>]},
{main, <<"readme">>}
]}.
{escript_incl_apps, [uf2tool]}.
{escript_main_app, uf2tool}.
{escript_name, uf2tool}.
{escript_emu_args, "%%! +sbtu +A1\n"}.
{hex, [{doc, ex_doc}]}.
%% Profiles
{profiles, [
{test, [
{erl_opts, [debug_info]}
]},
{check, [
{plugins, [erlfmt]}
]},
{doc, [
{erl_opts, [debug_info]},
{plugins, [rebar3_ex_doc]}
]},
{hex, [
{erl_opts, [debug_info]},
{plugins, [rebar3_ex_doc, rebar3_hex]}
]}
]}.