mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-14 07:43:36 +01:00
20 lines
415 B
Groovy
20 lines
415 B
Groovy
apply plugin: 'cpp'
|
|
|
|
|
|
// 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'
|
|
}
|
|
}
|
|
|
|
executables {
|
|
main {
|
|
}
|
|
}
|