.inl files in vc express

Started by
1 comment, last by all_names_taken 16 years ago
VC express says something like "No build rule defined for .inl files" when I used .inl files for my inline functions. Is it possible to define a build rule in vc express so that it works (if yes, how can I do it?), or do I just have to avoid .inl files and use files named .h for the same task?
Advertisement
You generally want the build rule to be "do nothing" for .inl files. You do not want them compiled by the compiler automatically, that will produce linker errors.

When is it giving you this message?
Hm, I wasn't able to recreate the error. The latest test I ran now worked without me changing anything. Odd... :/

This topic is closed to new replies.

Advertisement