Alboni Messages: 216 Registered: January 2012 Location: Kajaani, Finland
Experienced Member
Not directly but you can:
*Use different packages for different configurations
*Do things like :
#ifdef flagXXXX
... code for configuration XXXX
#elif defined flagYYYY
... code for configuration yyyy
#endif
*you can also include files with specific code from this #ifdef blocks, so create one rc file with just #ifdef and #include statements and have your specific code in separate .rc files that you include from the main one depending on flags. Only the main one you put in the package.