@@ -62,18 +62,15 @@ An appropriate configuration will be selected at compile time based on the numbe
6262
6363To build Authoring and Engine plugins on Windows you’ll need:
6464
65- - If using Visual Studio 2019 :
65+ - Visual Studio 2022 with the following components :
6666 - Desktop development with C++ workload
67- - MSVC v142 - VS 2019 C++ x64/x86 build tools
68- - C++ ATL for latest v142 build tools (x86 & x64)
69- - C++ MFC for latest v142 build tools (x86 & x64)
67+ - MSVC v143 - VS 2022 C++ x64/x86 build tools
68+ - C++ ATL for latest v143 build tools (x86 & x64)
69+ - C++ MFC for latest v143 build tools (x86 & x64)
7070 - Windows Universal CRT SDK
71- - Windows 10 SDK (10.0.19041.0)
72- - Different version can be specified in a generated
73- PremakePlugin.lua file
74- - If using Visual Studio 2022
75- - Requirements are the same as for 2019, but components of version v143 must be installed instead
76- - * Note:* Wwise of version at least 2022.1.5 is required to build plugins with this version of Visual Studio
71+ - Windows SDK
72+ - Any version that's not "out of support" should work
73+ - Different version can be specified in a generated PremakePlugin.lua file
7774- Wwise 2022 or later
7875 - Version 2021 should work, too, but it wasn't tested
7976 - SDKs with required deployment platforms must be installed through
@@ -102,14 +99,14 @@ Generate Visual Studio project files; note, WWISEROOT environment variable can b
10299
103100``` cmd
104101python "%WWISEROOT%\Scripts\Build\Plugins\wp.py" premake Authoring
105- python "%WWISEROOT%\Scripts\Build\Plugins\wp.py" premake Windows_vc160
102+ python "%WWISEROOT%\Scripts\Build\Plugins\wp.py" premake Windows_vc170
106103```
107104
108- Build Authoring and Engine plugins in Release configurations; for Visual Studio 2022 replace vc160 with vc170:
105+ Build Authoring and Engine plugins in Release configurations with for Visual Studio 2022 ( vc170) :
109106
110107``` cmd
111- python "%WWISEROOT%\Scripts\Build\Plugins\wp.py" build -c Release -x x64 -t vc160 Authoring
112- python "%WWISEROOT%\Scripts\Build\Plugins\wp.py" build -c Release -x x64 -t vc160 Windows_vc160
108+ python "%WWISEROOT%\Scripts\Build\Plugins\wp.py" build -c Release -x x64 -t vc170 Authoring
109+ python "%WWISEROOT%\Scripts\Build\Plugins\wp.py" build -c Release -x x64 -t vc170 Windows_vc170
113110```
114111
115112At this point, the plugins should be placed in correct SDK directories and be ready for use in the Authoring app.
@@ -120,7 +117,7 @@ We can go a step further and package the plugins into a bundle that can be insta
120117
121118``` cmd
122119python "%WWISEROOT%\Scripts\Build\Plugins\wp.py" package --version 2022.1.0.1 Authoring
123- python "%WWISEROOT%\Scripts\Build\Plugins\wp.py" package --version 2022.1.0.1 Windows_vc160
120+ python "%WWISEROOT%\Scripts\Build\Plugins\wp.py" package --version 2022.1.0.1 Windows_vc170
124121python "%WWISEROOT%\Scripts\Build\Plugins\wp.py" generate-bundle --version 2022.1.0.1
125122mkdir Bundle
126123copy /y bundle.json Bundle
0 commit comments