mirror of
https://github.com/decompme/decomp.me.git
synced 2026-05-07 23:41:22 -05:00
91131f9b4d
This reverts commit e67c36d5a7.
11 lines
294 B
Markdown
11 lines
294 B
Markdown
### Wine setup (for local development, running Windows compilers)
|
|
- Create a wineprefix dir
|
|
```shell
|
|
WINEPREFIX=$HOME/.wine WINEARCH=win32 wineboot --init
|
|
```
|
|
|
|
- Add the WINEPREFIX setting to your .local.env file in the root of the repo
|
|
```shell
|
|
echo "WINEPREFIX=$HOME/.wine" >> .local.env
|
|
```
|