mirror of
https://github.com/UltraCoderRU/libwebrtc.git
synced 2026-01-28 11:15:13 +00:00
README.md: Tell the user to run CMake
This commit is contained in:
parent
2d2ddde88d
commit
1f20b932cf
1 changed files with 3 additions and 4 deletions
|
|
@ -94,7 +94,7 @@ Install the required development packages
|
||||||
|
|
||||||
Clone the repository, initialize the submodules if `depot_tools` is not
|
Clone the repository, initialize the submodules if `depot_tools` is not
|
||||||
installed on your system or not defined inside your `PATH` environment variable.
|
installed on your system or not defined inside your `PATH` environment variable.
|
||||||
Create an output directory and browse inside it.
|
Create an output directory, browse inside it, then run CMake.
|
||||||
|
|
||||||
```
|
```
|
||||||
$ git clone https://github.com/aisouard/libwebrtc.git
|
$ git clone https://github.com/aisouard/libwebrtc.git
|
||||||
|
|
@ -103,17 +103,16 @@ $ git submodule init
|
||||||
$ git submodule update
|
$ git submodule update
|
||||||
$ mkdir out
|
$ mkdir out
|
||||||
$ cd out
|
$ cd out
|
||||||
|
$ cmake ..
|
||||||
```
|
```
|
||||||
|
|
||||||
Windows users will have to open the `libwebrtc.sln` located inside the current
|
Windows users will have to open the `libwebrtc.sln` located inside the current
|
||||||
directory output directory and build the `ALL_BUILD` project.
|
directory output directory and build the `ALL_BUILD` project.
|
||||||
|
|
||||||
Unix users will just have to run `$ cmake ..` to generate the Makefiles, then
|
Unix users will just have to run the following `make` commands.
|
||||||
run the following commands.
|
|
||||||
|
|
||||||
```
|
```
|
||||||
$ make
|
$ make
|
||||||
$ make package
|
|
||||||
# make install
|
# make install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue