Is it possible to have some sort of debug/release configurations that I can chose between so i can have some variables altered when compiling my project?
For example, alternate between database login variables or turn off some output debug variables.
Thanks
This kind of configuration is easily handled via command-line
-Dparameters, which should be settable in the run configurations, or via configuration files which can be selected the same way (usually cleaner, if there’s a bunch of parameters).Depending on frameworks in use there are also multiple ways to handle this.