aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2018-10-02 23:46:42 +0200
committerRobert Schumacher <roschuma@microsoft.com>2018-10-02 14:46:42 -0700
commitc63b56375285602ffee0c589169fab199ef8e6b3 (patch)
tree7e3ca5b19dc79aaf48c06bac0851806ef8ab6535
parentf9122d3aa24f6b2250876a8fdee69754c640d333 (diff)
downloadvcpkg-c63b56375285602ffee0c589169fab199ef8e6b3.tar.gz
vcpkg-c63b56375285602ffee0c589169fab199ef8e6b3.zip
Rename 'Ubuntu' with 'Linux' in README.md (#4393)
Let's not be biased or propagate a certain Linux distribution over others.
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index c2f3fc1da..054db327d 100644
--- a/README.md
+++ b/README.md
@@ -18,19 +18,19 @@ To get started:
> cd vcpkg
PS> .\bootstrap-vcpkg.bat
-Ubuntu:~/$ ./bootstrap-vcpkg.sh
+Linux:~/$ ./bootstrap-vcpkg.sh
```
Then, to hook up user-wide [integration](docs/users/integration.md), run (note: requires admin on first use)
```
PS> .\vcpkg integrate install
-Ubuntu:~/$ ./vcpkg integrate install
+Linux:~/$ ./vcpkg integrate install
```
Install any packages with
```
PS> .\vcpkg install sdl2 curl
-Ubuntu:~/$ ./vcpkg install sdl2 curl
+Linux:~/$ ./vcpkg install sdl2 curl
```
The best way to use installed libraries with CMake is via the toolchain file `scripts\buildsystems\vcpkg.cmake`. To use this file, you simply need to add it onto your CMake command line as `-DCMAKE_TOOLCHAIN_FILE=[vcpkg root]\scripts\buildsystems\vcpkg.cmake`.