Fix Intellij syncing for some generated dirs

This commit is contained in:
Louis Ryan 2016-02-18 13:46:08 -08:00
parent 85e68dbe98
commit 86ef8e70b5
2 changed files with 13 additions and 0 deletions

View File

@ -17,3 +17,10 @@ dependencies {
}
configureProtoCompilation()
idea {
module {
sourceDirs += file("${projectDir}/src/generated/main/grpc");
sourceDirs += file("${projectDir}/src/generated/main/java");
}
}

View File

@ -40,3 +40,9 @@ if (project.hasProperty('protobuf')) {
}
}
}
idea {
module {
sourceDirs += file("${projectDir}/src/generated/test/javanano");
}
}