Using OSX and cpp I'm trying to use CPP to do prepocessing on some text files. I am including an include statement in my files:

#include "my_include.tmpl"

Which works fine when use:

  cpp -P ./templates/my_template.tmpl output/my_template.tmpl

As long as my_include.tmpl and my_template.tmpl are in the same directory. However, when I try to place the includes in a different directory:

cpp -iquote ./templates/includes -P ./templates/directory/my_template.tmpl 

I get the following error:

i686-apple-darwin10-gcc-4.2.1: c: No such file or directory

If have tried a few combinations, but cannot seem to find a way to get this without the files in the same directory.

link|improve this question

64% accept rate
feedback

1 Answer

Try updating your include pre-processor directive like so:

#include "my_include.tmpl"

to

#include "templates/my_include.tmpl"

:)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.