blob: f80658b81f07637c578514f0ff19f63af4f71344 [file] [log] [blame]
apply plugin: "cpp"
executables {
java_plugin {}
}
binaries.all {
if (toolChain in Gcc) {
cppCompiler.args "-std=c++11"
linker.args "-lprotoc", "-lprotobuf"
}
}
sources {
java_plugin {
// Configure an existing CppSourceSet
cpp {
source {
srcDirs "src/"
include "**/*.cc"
}
}
}
}