I have the following problem using the sdk for symbian 9.1 (3rd edition). I want to set some compile options in the mmp project file.
In the older sdk I always achived this by adding the following line:
OPTION GCC -D__SERIES60_20FP2_USER__
After that I'm able to use this flags in the source code like this:
#ifdef __SERIES60_20FP2_USER__
...
#else
#endif
It seems that this no longer works in the 3rd edition of the sdk. There is no compile error but it seems the variables are not set. Can anybody confirm this or knows a workaround?
The reason why I want this is because I have different mmp project files for the different versions of the sdk. (The source code I have written is the same for all the differents sdks.)



