Open sky92zwq opened 10 months ago
@alexeagle, @thesayyn can you triage?
why should I add
import proto/b.proto
in a.proto, but justimport b.proto
afaik every import statement has to be relative to the workspace root if you are not using strip_import_prefix so this works as intended.
here is my dir layout: a.proto depends on b.proto, so
import b.proto
in a.proto.bazel build
got error:but cmake works fine. why should I add
import proto/b.proto
in a.proto, but justimport b.proto
?