mirror of
https://github.com/valitydev/parse_trans.git
synced 2024-11-06 00:25:16 +00:00
37 lines
1.2 KiB
Erlang
37 lines
1.2 KiB
Erlang
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
|
%% --------------------------------------------------
|
|
%% This file is provided to you 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.
|
|
%% --------------------------------------------------
|
|
|
|
{erl_first_files, ["src/parse_trans.erl",
|
|
"src/parse_trans_pp.erl",
|
|
"src/parse_trans_codegen.erl"]}.
|
|
|
|
{erl_opts, [debug_info]}.
|
|
{xref_checks, [undefined_function_calls]}.
|
|
|
|
{profiles,
|
|
[{docs,
|
|
[
|
|
{deps,
|
|
[{edown, ".*",
|
|
{git, "git://github.com/uwiger/edown.git", {tag, "0.8"}}}]},
|
|
{edoc_opts, [{doclet, edown_doclet},
|
|
{top_level_readme,
|
|
{"./README.md",
|
|
"http://github.com/uwiger/parse_trans"}}]}
|
|
]}
|
|
]}.
|