Hi, I want to add suffix as “_debug” to the libraries build in the debug mode and “_release” to the Release mode.
model
{
buildTypes {
debug
{
/* Both options doesn't work for CPP. */
//applicationIdSuffix ".debug"
//packageNameSuffix ".debug"
}
release
}
}
libraries {
"${project.name}" {
targetPlatforms 'x86'
}
}
sources {
"${project.name}" {
cpp {
source {
srcDirs "."
include "**/*.cpp"
}
exportedHeaders {
srcDirs "../common/inc"
include "*.h"
}
}
}
}
Could you please guide me, how to do the same for native binaries.
Thanks Mandar