Hi,<br><br>I have put exprecs.erl into util/src/ and added it to my util/ebin/util.app file but when I do my make it keeps complaining about <br><br><font style="color: rgb(0, 0, 0); font-family: courier new,monospace;" color="#0000ff" size="2" face="Arial">src/record_logger.erl:none: error in parse transform 
'exprecs': 
{undef,<br>                                     
[{exprecs,parse_transform,<br>                                       
[[{attribute,1,file,<br>                                          
{"src/record_logger.erl",1}},<br>                                         
{attribute,17,module,record_logger},<br>                                         
{attribute,1,file,<br>                                          
{"/home/pap/subv/util-0.1/../pap_app-0.1/include/my_types.hrl",<br>                                           
1}},</font><br><snip><br><br>I have my records definded in a .hrl which is included in the module where I want to utilise the exprecs functionality like this:<br><br><span style="font-family: courier new,monospace;">-compiler({parse_transform,exprecs}).</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">-include("my_types.hrl").</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">-export([fields/1]).</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">-export_records([ % huge list with all the records from my_types.hrl that I want to get the field names for</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">                ]).</span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">fields(Rec) -></span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">    '#info-'(fields,Rec).</span><br>
<br>Have I installed exprecs incorrectly?<br><br>Thanks,<br>Torben<br>