<div dir="ltr">Thank you all for the advice. I will make a new application for it :)<br><br><div class="gmail_quote">On Sat, Aug 30, 2008 at 12:02 PM, Ulf Wiger <span dir="ltr"><<a href="mailto:ulf@wiger.net">ulf@wiger.net</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">The only thing you need to do is to make sure the module is<br>
included in *some* application that is always loaded, no<br>
matter which configuration you happen to run.<br>
<br>
A module may not be listed in the 'modules' attribute of<br>
more than one application.<br>
<br>
Once loaded, the module can be called from any other module.<br>
The only aspects that are affected by which application a module<br>
belongs to are:<br>
<br>
- its place in the supervision hierarchy and ts group leader,<br>
  if it starts processes.<br>
- environment variables (application:get_env(Key)) when the<br>
  application name is not provided.<br>
<br>
You'll want to consider your application dependencies.<br>
Creating a new library applciation is much better than introducing<br>
an unclear dependency.<br>
<br>
BR,<br>
Ulf W<br>
<br>
2008/8/30 Matt Williamson <<a href="mailto:dawsdesign@gmail.com">dawsdesign@gmail.com</a>>:<br>
<div><div></div><div class="Wj3C7c">> I don't think you are answering the question very directly. Are you saying<br>
> that I should include the module in the list of modules for each app file?<br>
><br>
> On Sat, Aug 30, 2008 at 8:22 AM, Dale Harvey <<a href="mailto:harveyd@gmail.com">harveyd@gmail.com</a>> wrote:<br>
>><br>
>> you only need to write a .app file<br>
>> from <a href="http://erlang.org/doc/design_principles/applications.html#7" target="_blank">http://erlang.org/doc/design_principles/applications.html#7</a><br>
>><br>
>> The contents of a minimal .app file for a library application libapp looks<br>
>> like this:<br>
>><br>
>> {application, libapp, []}.<br>
>><br>
>> (I think the docs might be misleading though, I got errors using the<br>
>> minimal,<br>
>> this is what I use<br>
>><br>
>> {application, appname, [<br>
>>   {description, "Description"},<br>
>>   {vsn, "1.0"},<br>
>>   {modules,[]},<br>
>>   {registered,[]},<br>
>>   {applications, [kernel, stdlib]}<br>
>> ]}.<br>
>><br>
>> then have systools find that app file when generating the .rel<br>
>><br>
>> 2008/8/30 Matt Williamson <<a href="mailto:dawsdesign@gmail.com">dawsdesign@gmail.com</a>><br>
>>><br>
>>> Let's say I have a typical release directory like so:<br>
>>><br>
>>> /myrel<br>
>>>     |- lib/<br>
>>>         |- app1/<br>
>>>             |- src/<br>
>>>             |- ebin/<br>
>>>             |- include/<br>
>>>             |- doc/<br>
>>>         |- app2/...<br>
>>>         |- app3/...<br>
>>><br>
>>> How would I include a single module, which can be called by modules in<br>
>>> all of the applications? The only two ways I can think of is make it into an<br>
>>> app (I personally think that's overkill because I just want to call a<br>
>>> function in the module) or make a symlink, which won't work in windows.<br>
>>><br>
>>> _______________________________________________<br>
>>> erlang-questions mailing list<br>
>>> <a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
>>> <a href="http://www.erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://www.erlang.org/mailman/listinfo/erlang-questions</a><br>
>><br>
><br>
><br>
> _______________________________________________<br>
> erlang-questions mailing list<br>
> <a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
> <a href="http://www.erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://www.erlang.org/mailman/listinfo/erlang-questions</a><br>
><br>
</div></div></blockquote></div><br></div>