ソースを参照

Updated Readme for CMake

Paul-Louis Ageneau 6 年 前
コミット
c8f2b79015
1 ファイル変更4 行追加0 行削除
  1. 4 0
      README.md

+ 4 - 0
README.md

@@ -22,6 +22,9 @@ Submodules:
 
 ```bash
 $ git submodule update --init --recursive
+$ mkdir build
+$ cd build
+$ cmake ..
 $ make
 ```
 
@@ -47,6 +50,7 @@ pc->onLocalDescription([](const rtc::Description &sdp) {
 });
 
 pc->onLocalCandidate([](const rtc::Candidate &candidate) {
+    // Send the candidate to the remote peer
     MY_SEND_CANDIDATE_TO_REMOTE(candidate.candidate(), candidate.mid());
 });