libwebrtc-bin icon indicating copy to clipboard operation
libwebrtc-bin copied to clipboard

tar package include directory under which .h file is how to extract from webrtc-android source code?

Open xujingzhou opened this issue 1 year ago • 4 comments

Hi,Please tell me, tar package include directory under which .h file is how to extract from webrtc-android source code? For example, what.sh batch files are available? thanks very much!

xujingzhou avatar Oct 16 '22 01:10 xujingzhou

tar xf filename only.

Here is to discuss the issue, not to solve your problem. I am not your support center.

crow-misia avatar Oct 16 '22 03:10 crow-misia

thanks.I'll look into it

xujingzhou avatar Oct 16 '22 10:10 xujingzhou

I'm really sorry that this question confused you. What I really meant was to confirm whether cmd similar to the following was used to extract .h files from webrtc code.

#!/bin/bash src=find ./ -name "*.h*" echo $src for obj in $src do echo "cp header file $obj" cp --parents $obj ./include/ done

mv ./include/src/* ./include rm -rf ./include/src

xujingzhou avatar Oct 16 '22 10:10 xujingzhou

please see.

https://github.com/crow-misia/libwebrtc-bin/blob/716f93df6c23e50d3115526bca6b556f3ccccb03/build/common.mk#L70

crow-misia avatar Oct 16 '22 11:10 crow-misia