Skip to content

Commit

Permalink
3318: update Build.md for Win64 (TrenchBroom#3352)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelTroch authored Jul 10, 2020
1 parent 60ba694 commit 1a31ea6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Build.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ You'll also need to install these dependencies using Visual Studio Installer (in

#### Project dependencies

- Download and install [Qt](https://www.qt.io/download) for MSVC 2017 32-bit
- Download and install [Qt](https://www.qt.io/download) for MSVC 2017 32-bit and/or 64-bit
- **Important**: You have to create a personal account
- Minimum required version is `5.9`
- Download and install latest version of [CMake](http://www.cmake.org) for Windows
Expand All @@ -57,10 +57,16 @@ cd <path/to/TrenchBroom>/build

Then, execute this command to configure the project:

- For 32-bit:
```bash
cmake .. -G "Visual Studio 16 2019" -T v142 -A Win32 -DCMAKE_PREFIX_PATH="C:\Qt\5.13.0\msvc2017"
```

- For 64-bit:
```bash
cmake .. -G "Visual Studio 16 2019" -T v142 -A x64 -DCMAKE_PREFIX_PATH="C:\Qt\5.13.0\msvc2017_64"
```

> **Note**: Make sure to specify the correct Qt as `CMAKE_PREFIX_PATH` value.
### Build and debug TrenchBroom
Expand Down

0 comments on commit 1a31ea6

Please sign in to comment.