mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Add -A Win32 flag to README
This avoids failure modes made possible by mismatching 32-bit and 64-bit settings.
This commit is contained in:
parent
c591b79daf
commit
69e36229ec
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ To generate the projects on Windows:
|
||||||
# Put your SDL2/SDL2_mixer folders somewhere nice!
|
# Put your SDL2/SDL2_mixer folders somewhere nice!
|
||||||
mkdir flibitBuild
|
mkdir flibitBuild
|
||||||
cd flibitBuild
|
cd flibitBuild
|
||||||
cmake -G "Visual Studio 10 2010" .. -DSDL2_INCLUDE_DIRS="C:\SDL2-2.0.14\include;C:\SDL2_mixer-2.0.4\include" -DSDL2_LIBRARIES="C:\SDL2-2.0.14\lib\x86\SDL2;C:\SDL2-2.0.14\lib\x86\SDL2main;C:\SDL2_mixer-2.0.4\lib\x86\SDL2_mixer"
|
cmake -A Win32 -G "Visual Studio 10 2010" .. -DSDL2_INCLUDE_DIRS="C:\SDL2-2.0.14\include;C:\SDL2_mixer-2.0.4\include" -DSDL2_LIBRARIES="C:\SDL2-2.0.14\lib\x86\SDL2;C:\SDL2-2.0.14\lib\x86\SDL2main;C:\SDL2_mixer-2.0.4\lib\x86\SDL2_mixer"
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that on some systems, the `SDL2_LIBRARIES` list on Windows may need
|
Note that on some systems, the `SDL2_LIBRARIES` list on Windows may need
|
||||||
|
|
Loading…
Reference in a new issue