summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2020-05-14 20:35:47 -0400
committerJoseph Donofry <joedonofry@gmail.com>2020-05-14 20:35:47 -0400
commiteb4b02e8b92e8f1e44d764f753c635f0d3298bb3 (patch)
tree56d4428ede41ee7dc57f70238867370a2d553396
parentAdd un-encrypted warning icon for messages in encrypted rooms (diff)
parentUse standard cmake args instead of old -H (diff)
downloadnheko-eb4b02e8b92e8f1e44d764f753c635f0d3298bb3.tar.xz
Merge branch 'master' of ssh://github.com/Nheko-Reborn/nheko
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md

index 94c37253..0cb3e044 100644 --- a/README.md +++ b/README.md
@@ -229,14 +229,14 @@ Make sure to install the `MSVC 2017 64-bit` toolset for at least Qt 5.10 We can now build nheko: ```bash -cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release +cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release cmake --build build ``` To use bundled dependencies you can use hunter, i.e.: ```bash -cmake -H. -Bbuild -DHUNTER_ENABLED=ON -DBUILD_SHARED_LIBS=OFF -DUSE_BUNDLED_OPENSSL=OFF +cmake -S. -Bbuild -DHUNTER_ENABLED=ON -DBUILD_SHARED_LIBS=OFF -DUSE_BUNDLED_OPENSSL=OFF cmake --build build --config Release ``` @@ -255,7 +255,7 @@ You might need to pass `-DCMAKE_PREFIX_PATH` to cmake to point it at your qt5 in e.g on macOS ``` -cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=$(brew --prefix qt5) +cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=$(brew --prefix qt5) cmake --build build ```