Skip to content

Commit dbcb9f0

Browse files
authored
chore: Update plugins for 3.0.0-pre.6 (#947)
* [skip ci] Update plugins * fix readme
1 parent a6695d0 commit dbcb9f0

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

Plugin~/README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ Install dependencies to make development environment.
88

99
### Windows
1010

11-
On windows, first, the build process use the **clang** compiler. To install clang, see [MSDN](https://docs.microsoft.com/en-us/cpp/build/clang-support-msbuild?view=msvc-170). And [chocolatey](https://chocolatey.org/) is used to install.
11+
On windows, first, you need to install **Visual Studio 2022**. The build process use the **clang** compiler. To install clang, see [MSDN](https://docs.microsoft.com/en-us/cpp/build/clang-support-msbuild?view=msvc-170). And [chocolatey](https://chocolatey.org/) is used to install.
1212

1313
```powershell
1414
# Install CUDA
1515
choco install cuda --version=11.0.3
1616
1717
# Install Windows SDK
18-
# WARNING: If you have versions of Windows SDK earlier than Version 1809,
18+
# WARNING: If you have versions of Windows SDK earlier than Version 22H2,
1919
# compiling the plugin will fail. Make sure to uninstall earlier versions.
20-
choco install -y vcredist2010 vcredist2013 vcredist140 windows-sdk-10-version-1809-all
20+
choco install -y vcredist2010 vcredist2013 vcredist140 windows-sdk-11-version-22h2-all
2121
2222
# Install Vulkan
2323
choco install vulkan-sdk --version=1.2.182.0
2424
25-
# Install CMake 3.22.3
26-
choco install cmake -y --version=3.22.3
25+
# Install CMake 3.24.3
26+
choco install cmake -y --version=3.24.3
2727
2828
# Install 7zip (used to extract Google's webrtc library after download)
2929
choco install 7zip
@@ -68,9 +68,9 @@ sudo apt install -y cuda-toolkit-11-0
6868
# Install CMake 3.22.3
6969
sudo apt install -y libssl-dev
7070
sudo apt purge -y cmake
71-
wget https://github.com/Kitware/CMake/releases/download/v3.22.3/cmake-3.22.3.tar.gz
72-
tar xvf cmake-3.22.3.tar.gz
73-
cd cmake-3.22.3
71+
wget https://github.com/Kitware/CMake/releases/download/v3.24.3/cmake-3.24.3.tar.gz
72+
tar xvf cmake-3.24.3.tar.gz
73+
cd cmake-3.24.3
7474
./bootstrap && make && sudo make install
7575
```
7676

@@ -98,12 +98,12 @@ wget https://dl.google.com/android/repository/android-ndk-r21b-linux-x86_64.zip
9898
# Set Android NDK root path to `ANDROID_NDK` environment variable
9999
echo "export ANDROID_NDK=~/android-ndk-r21d/" >> ~/.profile
100100

101-
# Install CMake 3.22.3
101+
# Install CMake 3.24.3
102102
sudo apt install -y libssl-dev
103103
sudo apt purge -y cmake
104-
wget https://github.com/Kitware/CMake/releases/download/v3.22.3/cmake-3.22.3.tar.gz
105-
tar xvf cmake-3.22.3.tar.gz
106-
cd cmake-3.22.3
104+
wget https://github.com/Kitware/CMake/releases/download/v3.24.3/cmake-3.24.3.tar.gz
105+
tar xvf cmake-3.24.3.tar.gz
106+
cd cmake-3.24.3
107107
./bootstrap && make && sudo make install
108108

109109
# Install pkg-config, zip

0 commit comments

Comments
 (0)