I neeed to create multiple versions of my project using configuration just like we do with #define
, #if
, #endif
.
The down side of using these preprocessor directives is that I need to define symbols in almost every file of the project but I want to handle this thing by my build configurations.
I am not even sure if Build Configurations will help me to do this.
What I want is if I create a configuration with name "Development" and other with name "QA", my code would look like:
if #Development or if $QA
Kindly guide me towards achieving this.