I have a project_defs.h file that I want included into every file of my project. Can I use the Prefix Text option for this?
I tried adding #include "project_defs.h" to the Prefix Text field, but got tons of "preprocessor syntax error" messages.
Hello
Which CPU are you targeting (HC08, Coldfire V1, ..)
CrasyCat
It's Coldfire V1.
MCF51CN128
Hello
Inside of the Prefix Text edit box you need to specify
#include "my_include.h"
If your prefix file name is my_include.h.
Then next question is where is that file located?
Is the path to this include file specified in the list of user Paths inside of the Access Paths list box?
CrasyCat
Yes, I've placed this file in my Sources folder which is the Access Paths.
Well, my #include "project_defs.h" command should work then...?
Hold on...
I'm almost too embarrassed to say this, but for the sake of honesty... I forgot the qoutation marks.
It's working fine now. Sorry to waste your time on this one.