문제

In my module I have

-include("blah.hrl").

The .hrl file is not in the module's directory, but somewhere else on my system. How can I make rebar find it when compiling? Is there a way to add a path to the include directory in rebar.config?

도움이 되었습니까?

해결책

{erl_opts, [{i, PathToIncludeFile}]}.

in rebar.config should do the thing. Or append {i, ...} to the existing erl_opts, if you have any.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top