当前位置:网站首页>Compiling protobuf protocol files using makefile in PHP
Compiling protobuf protocol files using makefile in PHP
2022-06-25 23:47:00 【ndrandy】
- Makefile
WORK_DIR=$(shell pwd) PROTO_FILES=$(WORK_DIR)/Application/Protofiles/*.proto PHP_OUT_DIR=$(WORK_DIR)/Application/Protocols/ .PHONY: msg msg: @echo build begin protoc -I=$(WORK_DIR)/Application/Protofiles --php_out=$(PHP_OUT_DIR) $(PROTO_FILES) @echo build end
Usage method ( Terminal execution ):
~# make msg
边栏推荐
- 谈一谈生产环境中swoole协程创建数量控制机制
- CSDN添加页内跳转和页外指定段落跳转
- 权限设计=功能权限+数据权限
- Once beego failed to find bee after passing the go get command Exe's pit
- Anaconda一文入门笔记
- Analysis on the control condition and mode of go cooperation overtime exit
- 谈一谈PHP变量或参数的Copy On Write机制
- idea Kotlin版本升级
- Visual studio code create minimal web API (asp.net core)
- SSL/TLS、对称加密和非对称加密和TLSv1.3
猜你喜欢
随机推荐
音频基础知识以及PCM转WAV
库项目和App项目中清单文件的包名不要相同
QT Chinese and English use different fonts respectively
第六章 习题(678)【微机原理】【习题】
Apache Doris1.0版本集群搭建、负载均衡与参数调优
Customize the qcombobox drop-down box, right align the display, and slide the drop-down list
Gradle的环境安装与配置
YUV444、YUV422、YUV420、YUV420P、YUV420SP、YV12、YU12、NV12、NV21
CSDN force value
C. Yet Another Card Deck-Educational Codeforces Round 107 (Rated for Div. 2)
二进制、16进制、大端小端
UE4 learning record 2 adding skeleton, skin and motion animation to characters
Use of xinchida ble 5.0 Low Power Bluetooth module (at command serial port transparent transmission) rsbrs02abr
CSDN add on page Jump and off page specified paragraph jump
Ad20 learning notes II
213.打家劫舍 II
Once beego failed to find bee after passing the go get command Exe's pit
Bi-sql stored procedure (I)
Analyse des cinq causes profondes de l'échec du développement de produits
Kylin









