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
395 B
Makefile
13 lines
395 B
Makefile
PROTOC=protoc \
|
|
--proto_path='./'
|
|
WRAPPER_SCRIPT=../../../../session-ios/Scripts/ProtoWrappers.py \
|
|
--proto-dir='./' --verbose --add-log-tag
|
|
|
|
all: webrtc_data_proto
|
|
|
|
webrtc_data_proto: WhisperTextProtocol.proto
|
|
$(PROTOC) --swift_out=. \
|
|
WhisperTextProtocol.proto
|
|
$(WRAPPER_SCRIPT) --dst-dir=. \
|
|
--wrapper-prefix=SPKProto --proto-prefix=SPKProtos --proto-file=WhisperTextProtocol.proto
|