rebar3_asn1_compiler alternatives and similar packages
Based on the "Build Tools" category.
Alternatively, view rebar3_asn1_compiler alternatives based on common mentions on social networks and blogs.
-
Rebar3
Erlang build tool that makes it easy to compile and test Erlang applications and releases. -
reaxt
Use React template into your Elixir application for server rendering -
rebar3_auto
Rebar3 plugin to auto compile and reload on file change. -
rebar3_eqc
A rebar3 plugin to enable the execution of Erlang QuickCheck properties -
reltool_util
Erlang reltool utility functionality application -
rebar3_diameter_compiler
Compile Diameter .dia files on Erlang Rebar3 projects -
rebar3_exunit
A plugin to run Elixir ExUnit tests from rebar3 build tool -
ExMake
A modern, scriptable, dependency-based build tool loosely based on Make principles. -
coffee_rotor
Rotor plugin to compile CoffeeScript files -
rebar3_neotoma_plugin
Rebar3 neotoma (Parser Expression Grammar) compiler -
rebar3_protobuffs
rebar3 protobuffs provider using protobuffs from Basho -
rebar3_idl_compiler
This is a plugin for compiling Erlang IDL files using Rebar3. -
dismake
a "compiler" (as in `Mix.compilers`) for Elixir that just runs make
Elixir and Phoenix Application Security Platform
Do you think we are missing an alternative of rebar3_asn1_compiler or a related project?
README
ASN.1 compiler plugin for Rebar3
Plugin for compiling ASN.1 modules with Rebar3.
Installation
Add plugin to your project rebar.config
file.
{plugins, [
{ rebar3_asn1_compiler, "1.0.0"}
]}.
Usage
Define ASN.1 compiler options in rebar.config
and add output directory to Erlang source directories.
Supported options are listed at ASN.1 compiler documentation.
In addition, {asndir, "asn1"}
can be used for defining the directory containing
the ASN.1 modules. The default options are [{asndir, "asn1"}, {outdir, "asn1_gen"}, noobj]
.
{asn1_opts, [{outdir, "asn1_gen"}, uper]}.
{src_dirs, ["src", "asn1_gen"]}.
Additionally, plugin can be hooked into standard compile
and clean
commands.
{provider_hooks, [
{pre,
[{clean, {asn1, clean}},
{compile, {asn1, compile}}]}
]}.
Stand-alone compile
and clean
commands are defined in asn1
namespace
rebar3 asn1 compile
rebar3 asn1 clean
Contributing
Feel free to send pull requests, feature requests or issue reports.
License
MIT.
*Note that all licence references and agreements mentioned in the rebar3_asn1_compiler README section above
are relevant to that project's source code only.