Skip to content

Commit

Permalink
Update docs to require Visual Studio 2022
Browse files Browse the repository at this point in the history
  • Loading branch information
bear101 committed Mar 3, 2025
1 parent e2819f7 commit f2d4e2c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ project (TeamTalk5SDK)
#
# Windows 64-bit
# --------------
# Open "x64 Native Tools Command Prompt for VS 2019" and change to
# Open "x64 Native Tools Command Prompt for VS 2022" and change to
# directory of TeamTalk5 checkout, e.g. C:\TeamTalk5
#
# Now configure an output directory, here teamtalk-win64, for
Expand All @@ -37,7 +37,7 @@ project (TeamTalk5SDK)
#
# $ cmake --build teamtalk-win64
#
# A Visual Studio 2019 solution file will also be available in output
# A Visual Studio 2022 solution file will also be available in output
# directory teamtalk-win64.

option (BUILD_TEAMTALK_CORE "Build TeamTalk core library" ON)
Expand Down
6 changes: 3 additions & 3 deletions Client/qtTeamTalk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ from https://www.qt.io/
Setup Qt Framework in environment variables so CMake can detect Qt
Framework, e.g.:

`# set QTDIR=c:\Qt\6.7.1\msvc2019_64`
`# set QTDIR=c:\Qt\6.8.0\msvc2022_64`
`# set PATH=%QTDIR%\bin;%PATH%`

Now use CMake to generate project files:

`cmake -G "Visual Studio 16 2019" -A x64 -S C:/TeamTalk5 -B builddir`
`cmake -G "Visual Studio 17 2022" -A x64 -S C:/TeamTalk5 -B builddir`
`cmake --build builddir

To open the generated project files in Visual Studio 2019 open
To open the generated project files in Visual Studio 2022 open
*TeamTalk5.vcxproj*.

## Update Translation Files for Qt-based TeamTalk 5
Expand Down
8 changes: 4 additions & 4 deletions Library/TeamTalkLib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ there's different ways of doing this.
### Build TeamTalk Binaries for Windows

Building TeamTalk for Windows is supported by
[Visual Studio 2019](https://visualstudio.microsoft.com).
[Visual Studio 2022](https://visualstudio.microsoft.com).

To build TeamTalk for Windows first start *x86 Native Tools Command
Prompt for VS 2019*. Use Git to clone
Prompt for VS 2022*. Use Git to clone
[TeamTalk5](https://github.com/BearWare/TeamTalk5) repository into
`C:\TeamTalk5`.

Expand All @@ -123,9 +123,9 @@ start the build process:
`cmake --build C:/builddir --config Release --target install`

To get a Visual Studio solution file for building TeamTalk from Visual
Studio 2019 run CMake like this:
Studio 2022 run CMake like this:

`cmake -G "Visual Studio 16 2019" -S C:/TeamTalk5 -B C:/builddir -A Win32`
`cmake -G "Visual Studio 17 2022" -S C:/TeamTalk5 -B C:/builddir -A Win32`

Note that WebRTC dependency will create a folder in `C:\webrtc` where
it downloads its repository.
Expand Down
2 changes: 1 addition & 1 deletion Library/TeamTalkLib/build/ace/build_win.bat_sample
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cd ACE
set ACE_ROOT=%CD%
set SSL_ROOT=@OPENSSL_DIR@
perl %ACE_ROOT%\bin\mwc.pl -type vs2019 -static -features ssl=1 -features uses_wchar=1 -features ipv6=1 -expand_vars ace protocols
perl %ACE_ROOT%\bin\mwc.pl -type vs2022 -static -features ssl=1 -features uses_wchar=1 -features ipv6=1 -expand_vars ace protocols

0 comments on commit f2d4e2c

Please sign in to comment.