I'm developing an SDK and i need to know if the host app is in debug mode. clearly something like this:
#if DEBUG
  do something
 #else
  do something else 
 #endif
won't work because this preprocessor macro is referring to the SDK mode and not the host app. Is there any way to know after the SDK is compiled if the host app is in debug/ release mode ?
 
    