Skip to content
Snippets Groups Projects
Commit 800a71cf authored by Jorge Canizales's avatar Jorge Canizales Committed by GitHub
Browse files

Don't always import Protobuf like a framework

If the macro isn't set, e.g. for Bazel compilations, import the way it was done before https://github.com/grpc/grpc/commit/fb4a54541a6e00c43e1671cda0a25e2eda4792df.
parent cb6d26af
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,11 @@
#import "ProtoRPC.h"
#import <Protobuf/GPBProtocolBuffers.h>
#if GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS
#import <Protobuf/GPBProtocolBuffers.h>
#else
#import <GPBProtocolBuffers.h>
#endif
#import <RxLibrary/GRXWriteable.h>
#import <RxLibrary/GRXWriter+Transformations.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment