You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update your `PATH` and `Qt6_DIR` environment variables. For example, if you're using zsh, add the following to your `~/.zshrc` (updating the version number to match the version you installed).
Add Qt to your system PATH. For example, if you installed Qt to C:\Qt:
41
41
```cmd
42
-
setx PATH "%PATH%;C:\Qt\6.9.1\msvc2022_64\bin"
43
-
setx Qt6_DIR "C:\Qt\6.9.1\msvc2022_64\lib\cmake"
42
+
setx PATH "%PATH%;C:\Qt\6.10.0\msvc2022_64\bin"
43
+
setx Qt6_DIR "C:\Qt\6.10.0\msvc2022_64\lib\cmake"
44
44
```
45
45
46
46
### CMake
@@ -111,7 +111,7 @@ After building a release, the executables will be in the `release\Tau5-for-Windo
111
111
## Troubleshooting
112
112
113
113
### Qt Version Mismatch
114
-
If you encounter errors about missing Qt methods (like `setOffTheRecord`), ensure you're using a Qt version within the supported range (6.6.0 - 6.9.1).
114
+
If you encounter errors about missing Qt methods (like `setOffTheRecord`), ensure you're using a Qt version within the supported range (6.6.0 - 6.10.0).
115
115
116
116
### Build Errors
117
117
Make sure you're using the "x64 Native Tools Command Prompt for VS 2022" or have run `vcvarsall.bat x64` to set up the Visual Studio environment variables.
0 commit comments