README.md: Tell the user to run CMake

This commit is contained in:
Axel Isouard 2017-02-09 21:13:58 +01:00
parent 2d2ddde88d
commit 1f20b932cf
No known key found for this signature in database
GPG key ID: 4E64BB3EAAF31C29

View file

@ -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
``` ```