session-ios/protobuf/Makefile
Michael Kirk 647b2b37e9 WIP: WebRTC calling
* Ensure NotificationsManager has dependencies
    Otherwise it's easy to mess up the order of the required dependencies.
* move AccountManager into Environment, it's heavy to construct

// FREEBIE
2017-01-12 09:56:05 -05:00

16 lines
477 B
Makefile

# Assumes you've installed protobuf-objc
# see: https://github.com/alexeyxo/protobuf-objc
PROTOC=protoc \
--plugin=/usr/local/bin/proto-gen-objc \
--proto_path="${HOME}/src/WhisperSystems/protobuf-objc/src/compiler/" \
--proto_path="${HOME}/src/WhisperSystems/protobuf-objc/src/compiler/google/protobuf/" \
--proto_path='./'
all: webrtc_data_proto
webrtc_data_proto: OWSWebRTCDataProtos.proto
$(PROTOC) --objc_out=../Signal/src/call/ \
OWSWebRTCDataProtos.proto