In Windows if I want to set #define statements,I can give it in the preprocessor definition.
Where will I give the #define which I defined for Linux if I want to compile the linux code under Linux

for Eg:-

#ifdefine WIN32

#elif _Linux

#endif

where Should I give the "_Linux" in Linux.
Thanks..