Files
cpp-examples/gradle/03-hello-muni-with-debug/build.gradle
2013-11-23 17:00:25 +01:00

15 lines
385 B
Groovy

apply plugin: 'cpp-exe'
// Based on http://www.gradle.org/docs/current/userguide/nativeBinaries.html
binaries.all {
if (toolChain in Gcc && buildType == buildTypes.debug) {
cppCompiler.args "-g"
}
if (toolChain in VisualCpp && buildType == buildTypes.debug) {
cppCompiler.args '/Zi'
cppCompiler.define 'DEBUG'
linker.args '/DEBUG'
}
}