Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

Try updating your include pre-processor directive like so:

#include "my_include.tmpl"

to

#include "templates/my_include.tmpl"

:)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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