mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
477 B
Makefile
16 lines
477 B
Makefile
9 years ago
|
# 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
|
||
|
|