Skip to content

Commit

Permalink
Put git configuration core.longpaths=true in Windows documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tdcosta100 authored Jan 19, 2025
1 parent 0dea8ba commit 87753af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion platform/windows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ To install the required Visual Studio components, open Visual Studio Installer a
Open `x64 Native Tools Command Prompt for VS 2022` and then clone the repository:

```cmd
git clone --recurse-submodules -j8 https://github.com/maplibre/maplibre-native.git
git clone --config core.longpaths=true --recurse-submodules -j8 https://github.com/maplibre/maplibre-native.git
cd maplibre-native
```

> [!NOTE]
> The `core.longpaths=true` config is necessary, because without it a lot of `Filename too long` messages will come. If you have this configuration set globally (`git config --system core.longpaths=true`), you can omit the `--config core.longpaths=true` portion of the clone command.
## Configuring

Configure the build with the following command:
Expand Down

0 comments on commit 87753af

Please sign in to comment.