Skip to content

Commit 347deba

Browse files
committed
Changed Qt 5.11.2 -> 5.12.2 in docs
1 parent d3f96c9 commit 347deba

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/ContributorEnvSetup.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Run [fix-formatting.sh](https://github.com/status-im/react-native-desktop/blob/m
4646
In `Qt Creator` select menu `File`->`Open File or Project...`.
4747
Navigate to the root directory of your `react-native-desktop` clone and select `CMakeList.txt` file to open.
4848

49-
Select Qt 5.11.2 toolchain to configure the project, if prompted.
49+
Select Qt 5.12.2 toolchain to configure the project, if prompted.
5050

5151
By default, Qt configures `CMake` to do out-of-directory build on one level higher than your repo clone directory.
5252

@@ -77,7 +77,7 @@ Like you do when [run your new app](CreateNewApp.md#run-the-project)
7777
1. Build and run `react-native-desktop` as described above
7878
2. Open `Projects` tab in Qt Creator and select `Run` under `Build & Run` section of left pane
7979
3. Add new `run configuration` for `Custom executable`, and name it `TicTacToe`.
80-
4. Place path to qmlscene binary in `Executable` field: `/Users/USER_NAME/Qt/5.11.2/clang_64/bin/qmlscene`
80+
4. Place path to qmlscene binary in `Executable` field: `/Users/USER_NAME/Qt/5.12.2/clang_64/bin/qmlscene`
8181
5. In `command line arguments` set `-I ./ReactQt/runtime/src/ ./Examples/TicTacToe/TicTacToe.qml`
8282
6. in `working directory` set `%{buildDir}`
8383
7. Select `Build`->`Run` Qt Creator menu option to run TicTacToe example application.

docs/InspectAppWithGammaRay.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Steps to build it (inside cloned src folder):
1111
```
1212
mkdir build
1313
cd build
14-
cmake -DCMAKE_PREFIX_PATH=PATH_TO_YOUR_QT_FOLDER/5.11.2/gcc_64/lib/cmake ..
14+
cmake -DCMAKE_PREFIX_PATH=PATH_TO_YOUR_QT_FOLDER/5.12.2/gcc_64/lib/cmake ..
1515
make
1616
make install
1717
```

docs/InstallPrerequisites.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Recommended way to install required tools and libs is to use [Chocolatey](https:
1414
choco install -y nodejs.install python2 cmake git
1515
```
1616

17-
Download and run [Qt 5.11.2](https://download.qt.io/archive/qt/5.11/5.11.2/qt-opensource-windows-x86-5.11.2.exe) installer for Windows. During installation process on `Select Components` screen check `Qt 5.11.2 / MinGW 5.3.0 32 bit`, `Qt 5.11.2 / Qt WebEngine` and `Tools / MinGW 5.3.0` components. Finish installation process.
17+
Download and run [Qt 5.12.2](https://download.qt.io/archive/qt/5.12/5.12.2/qt-opensource-windows-x86-5.12.2.exe) installer for Windows. During installation process on `Select Components` screen check `Qt 5.12.2 / MinGW 5.3.0 32 bit`, `Qt 5.12.2 / Qt WebEngine` and `Tools / MinGW 5.3.0` components. Finish installation process.
1818

1919
### Mac OS
2020

@@ -24,15 +24,15 @@ Recommended way to install required tools and libs is to use [Homebrew](https://
2424
brew install node watchman cmake
2525
```
2626

27-
Download and run [Qt 5.11.2](https://download.qt.io/archive/qt/5.11/5.11.2/qt-opensource-mac-x64-5.11.2.dmg) installer for Mac OS. During installation process on `Select Components` screen check `Qt 5.11.2 / macOS` and `Qt 5.11.2 / Qt WebEngine` components. Finish installation process.
27+
Download and run [Qt 5.12.2](https://download.qt.io/archive/qt/5.12/5.12.2/qt-opensource-mac-x64-5.12.2.dmg) installer for Mac OS. During installation process on `Select Components` screen check `Qt 5.12.2 / macOS` and `Qt 5.12.2 / Qt WebEngine` components. Finish installation process.
2828

2929
### Ubuntu
3030

3131
```
3232
sudo apt-get install -y git cmake nodejs-legacy npm gnome-terminal
3333
```
3434

35-
Download and run [Qt 5.11.2](https://download.qt.io/archive/qt/5.11/5.11.2/qt-opensource-linux-x64-5.11.2.run) installer for Linux. Finish installation process.
35+
Download and run [Qt 5.12.2](https://download.qt.io/archive/qt/5.12/5.12.2/qt-opensource-linux-x64-5.12.2.run) installer for Linux. Finish installation process.
3636

3737
### Fedora
3838

@@ -45,4 +45,4 @@ sudo dnf install -y nodejs npm cmake git qt5-devel gnome-terminal
4545
Make sure that installed Qt's `qmake` tool is available in your PATH.
4646
On mac and linux you can add following to `.bash_profile`:
4747

48-
`export PATH=$PATH:/Users/MyUser/Qt/5.11.2/COMPILER_NAME/bin`
48+
`export PATH=$PATH:/Users/MyUser/Qt/5.12.2/COMPILER_NAME/bin`

0 commit comments

Comments
 (0)