I'm developing a framework as a component to a project. The framework has some networking components and basically I want the path to change depending on the release configuration of the main app.
It's set-up as such:
let path = //development path
And id like to create a flag such that:
#if PRODUCTION
let path = //production path
#else
let path = //dev path
#endif
These release schemes are specific to the main app which has loaded the framework in. Is it still possible to use a compiler flag to define this behavior?