kplayer-rust-wrap 1.5.8

libkplayer plugin wrap for rust
Documentation
1
2
3
4
5
6
7
8
9
10
.PHONY: proto clean

proto: $(OBJS)
	mkdir -p kplayer/proto
	protoc -I ./ --rust_out ./kplayer/proto proto/*.proto 
	protoc -I ./ --rust_out ./kplayer/proto proto/prompt/*.proto
	protoc -I ./ --rust_out ./kplayer/proto proto/msg/*.proto

clean-proto:
	cd kplayer/proto && ls | grep -v 'mod.rs' | xargs rm -rf