show/hide this revision's text 2 typo in tag
show/hide this revision's text 1

C Macros to create strings

I would like to use C #define to build literal strings at compile time.

The string are domains that change for debug, release etc.

I would like to some some thing like this:

#ifdef __TESTING
    #define IV_DOMAIN domain.org			//in house testing
#elif __LIVE_TESTING
    #define IV_DOMAIN test.domain.com		//live testing servers
#else
    #define IV_DOMAIN domain.com			//production
#endif

// Sub-Domain
#define IV_SECURE "secure.IV_DOMAIN"             //secure.domain.org etc
#define IV_MOBILE "m.IV_DOMAIN"

But the preprocessor doesn't evaluate anything within ""

  1. Is there a way around this?
  2. Is this even a good idea?