We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc57b03 commit 75c2a7dCopy full SHA for 75c2a7d
compiler/build.gradle
@@ -127,12 +127,12 @@ model {
127
if (rootProject.hasProperty('vcProtobufInclude')) {
128
cppCompiler.args "/I${rootProject.vcProtobufInclude}"
129
}
130
+ linker.args.add("libprotoc.lib")
131
+ linker.args.add("libprotobuf.lib")
132
if (rootProject.hasProperty('vcProtobufLibs')) {
133
String libsList = rootProject.property('vcProtobufLibs') as String
- linker.args.add("libprotoc.lib")
- linker.args.add("libprotobuf.lib")
134
libsList.split(',').each() { lib -> linker.args.add(lib) }
135
- }
+ }
136
if (rootProject.hasProperty('vcProtobufLibPaths')) {
137
linker.args "/LIBPATH:${rootProject.vcProtobufLibPaths}"
138
0 commit comments