WebRTC : ninja build not working

前端 未结 2 1779
盖世英雄少女心
盖世英雄少女心 2020-12-18 13:44

Steps I followed for build of webRTC in UBUNTU env.

Check out the code:

 gclient config https://webrtc.googlecode.com/svn/trunk
 echo \"target_os = [         


        
2条回答
  •  执笔经年
    2020-12-18 14:38

    I got the same ninja: error: unknown target 'AppRTCDemo' error on Mac. To resolve this error, I had to specify a valid demo app. For iOS its AppRTCMobile instead of AppRTCDemo as stated in the docs.

    ninja -C out/Debug-sim32 AppRTCMobile

    The RTC Mobile demo exists in the gclient checkout: src/webrtc/examples/objc

    https://chromium.googlesource.com/external/webrtc/+/master/webrtc/examples/objc/AppRTCMobile/

提交回复
热议问题