# HG changeset patch # User Wuzzy # Date 1566426513 -3600 # Node ID 166ed99446008499b333e6436cbe838ef00c4411 # Parent 625477ff278641aebbf1b52a347bc9827e4ff864 BuildingOnWindows: Fix bullet list screw-up diff -r 625477ff2786 -r 166ed9944600 BuildingOnWindows.wiki --- a/BuildingOnWindows.wiki Wed Aug 21 23:25:59 2019 +0100 +++ b/BuildingOnWindows.wiki Wed Aug 21 23:28:33 2019 +0100 @@ -42,30 +42,15 @@ # Using command-line Mercurial * If you have Windows 7 or later, skip the next 3 steps, and instead, use Shift + Right-click in the folder where you want to download the source. * Start _Run..._ ( Press Windows key + R, or click on the Start menu, then on "Run ..." ) - * Enter: -{{{ -cmd.exe -}}} + * Enter: `cmd.exe` * Navigate to where you want to download the source - * Type and execute (The initial clone of the repository will take a while): -{{{ -hg clone https://hg.hedgewars.org/hedgewars/ trunk -}}} + * Type and execute (The initial clone of the repository will take a while): `hg clone https://hg.hedgewars.org/hedgewars/ trunk` # Run Vckpg in the command line to build the necessary libraries (this will also take a while, especially for Qt). The command is: - * For 32-bit builds: -{{{ -./vcpkg.exe install sdl2 sdl2-image sdl2-ttf sdl2-mixer sdl2-mixer[libvorbis] physfs openssl qt5-base qt5-tools ffmpeg -}}} - * For 64-bit builds: -{{{ -./vcpkg.exe install sdl2:x64-windows sdl2-image:x64-windows sdl2-ttf:x64-windows sdl2-mixer:x64-windows sdl2-mixer[libvorbis]:x64-windows physfs:x64-windows openssl:x64-windows qt5-base:x64-windows qt5-tool:x64-windows ffmpeg:x64-windows -}}} + * For 32-bit builds: `./vcpkg.exe install sdl2 sdl2-image sdl2-ttf sdl2-mixer sdl2-mixer[libvorbis] physfs openssl qt5-base qt5-tools ffmpeg` + * For 64-bit builds: `./vcpkg.exe install sdl2:x64-windows sdl2-image:x64-windows sdl2-ttf:x64-windows sdl2-mixer:x64-windows sdl2-mixer[libvorbis]:x64-windows physfs:x64-windows openssl:x64-windows qt5-base:x64-windows qt5-tool:x64-windows ffmpeg:x64-windows` # Build Hedgewars * Run the Developer Command Prompt for VS 2019 (or other installed version) from the Start menu (if you want Hedgewars to install to the default location in *C:/Program Files (x86)*, run it as administrator). - * For 64-bit builds, in the dev command prompt run the following command (not necessary for 32-bit builds) -{{{ -VC\Auxiliary\Build\vcvarsall.bat amd64 -}}} + * For 64-bit builds, in the dev command prompt run the following command (not necessary for 32-bit builds): `VC\Auxiliary\Build\vcvarsall.bat amd64` * Navigate to `/tools` where `` is the directory where you cloned the repository source to. * Run `build_vcpkg.bat` script # After building, you can run Hedgewars from the installed location (default is `C:/Program Files (x86)/hedgewars/hedgewars.exe`)