Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update hxcpp setup instructions for windows #537

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion content/12-target-details.md
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,14 @@ On Mac, it is recommended that you install the latest Xcode from the Mac App Sto

On Linux, it is recommended that you use the system package manager to install the compilers.

On Windows, Microsoft Visual Studio is recommended. On Windows, you can also use `gcc`-based compilers. A minimal distribution is included in a Haxelib library, and can be installed with `haxelib install minimingw`.
On Windows, Microsoft Visual Studio is recommended. You can also use `gcc`-based compilers.

To compile with Microsoft Visual Studio, you need to install the Builds Tools and `vswhere`. You can install the 2022 Build Tools and `vswhere` using the following winget commands:

```pwsh
winget install -e --id Microsoft.VisualStudio.2022.BuildTools
winget install -e --id Microsoft.VisualStudio.Locator
```

##### Cross Compilers

Expand Down