blob: f80658b81f07637c578514f0ff19f63af4f71344 [file] [log] [blame]
zhangkun9de8e4b2015-01-15 10:29:05 -08001apply plugin: "cpp"
2
3executables {
4 java_plugin {}
5}
6
7binaries.all {
8 if (toolChain in Gcc) {
9 cppCompiler.args "-std=c++11"
10 linker.args "-lprotoc", "-lprotobuf"
11 }
12}
13
14sources {
15 java_plugin {
16 // Configure an existing CppSourceSet
17 cpp {
18 source {
19 srcDirs "src/"
20 include "**/*.cc"
21 }
22 }
23 }
24}
25