Hi everybody,
I used some set of constant to build my project.
I declare these constant in common header file as follows
file name : constant.h
#define __BUILDDEBUG__
// #define __BUILDRELEASE__
I include this file in mmp and used it as follows
I want to include my some header and source files depend up the macro enabled.
#ifdef __BUILDDEBUG __
USERINCLUDE ..\Common\DebugFiles
#endif
#ifdef __BUILDRELEASE __
USERINCLUDE ..\Common\Partner\ReleaseFiles
#endif
It work fine in second edition and in 3rd edition using code worrier.
But if I use carbide ( Dot Net IDE ) it gives error, cant found header files etc.
Can you please help me to solve this problem ?
Regards,
Dip



