Quellcode durchsuchen

Updated Readme for CMake

Paul-Louis Ageneau vor 6 Jahren
Ursprung
Commit
c8f2b79015
1 geänderte Dateien mit 4 neuen und 0 gelöschten Zeilen
  1. 4 0
      README.md

+ 4 - 0
README.md

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