Skip to content

GRPC prebuilt for Zwin projects

Notifications You must be signed in to change notification settings

zwin-project/grpc-dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gRPC built for Zwin development

This repository is used by Zwin projects such as zen-remote and zen-mirror to use gRPC.
Please refer to the documentation of the respective repositories for details.

Build

Checkout

$ git checkout <branch>
$ git submodule update --init --recursive

Configure local.mk

See zen-mirror for the NDK version and directory to be specified

$ cp local.sample.mk local.mk
$ vim local.mk

Build

Build for both Android and host OS.

$ make

Build for only host OS.

$ make native

Release Build

Build with BUILD_TYPE environment variable set to Release

$ BUILD_TYPE=Release make