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
360 B
Makefile
13 lines
360 B
Makefile
5 years ago
|
|
||
|
PROTOC=protoc \
|
||
|
--proto_path='./'
|
||
|
WRAPPER_SCRIPT=../../Scripts/ProtoWrappers.py \
|
||
|
--proto-dir='./' --verbose
|
||
|
|
||
|
all: session_protos
|
||
|
|
||
|
session_protos: SessionProtos.proto
|
||
|
$(PROTOC) --swift_out=./Generated \SessionProtos.proto
|
||
|
$(WRAPPER_SCRIPT) --dst-dir=./Generated \
|
||
|
--wrapper-prefix=SNProto --proto-prefix=SessionProtos --proto-file=SessionProtos.proto
|