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.