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.
13 lines
410 B
Makefile
13 lines
410 B
Makefile
9 years ago
|
PROTOC=protoc \
|
||
|
--proto_path='./'
|
||
7 years ago
|
WRAPPER_SCRIPT=../Scripts/ProtoWrappers.py \
|
||
|
--proto-dir='./' --verbose
|
||
9 years ago
|
|
||
|
all: webrtc_data_proto
|
||
|
|
||
|
webrtc_data_proto: OWSWebRTCDataProtos.proto
|
||
7 years ago
|
$(PROTOC) --swift_out=../Signal/src/Generated \
|
||
9 years ago
|
OWSWebRTCDataProtos.proto
|
||
7 years ago
|
$(WRAPPER_SCRIPT) --dst-dir=../Signal/src/Generated \
|
||
|
--wrapper-prefix=WebRTCProto --proto-prefix=WebRTCProtos --proto-file=OWSWebRTCDataProtos.proto
|