From 1ec3c4bc62f3eb91fd876db103f7e72202b6d5eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Fri, 26 Dec 2014 21:45:08 +0100 Subject: [PATCH] Update INSTALL.md try to explain the changes from #7190 and #7197 --- INSTALL.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 559bd36b93..4c0d4329e0 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -8,25 +8,22 @@ Windows * [Windows PowerShell >= 4.0](http://microsoft.com/powershell) * [.NET Framework >= 4.0 (Client Profile)](http://www.microsoft.com/en-us/download/details.aspx?id=17113) -* [SDL 2 (included)](http://www.libsdl.org/download-2.0.php) -* [FreeType (included)](http://gnuwin32.sourceforge.net/packages/freetype.htm) -* [zlib (included)](http://gnuwin32.sourceforge.net/packages/zlib.htm) -* [OpenAL (included)](http://kcat.strangesoft.net/openal.html) -* [liblua 5.1 (included)](http://luabinaries.sourceforge.net/download.html) +* [SDL 2](http://www.libsdl.org/download-2.0.php) (included) +* [FreeType](http://gnuwin32.sourceforge.net/packages/freetype.htm) (included) +* [zlib](http://gnuwin32.sourceforge.net/packages/zlib.htm) (included) +* [OpenAL](http://kcat.strangesoft.net/openal.html) (included) +* [liblua 5.1](http://luabinaries.sourceforge.net/download.html) (included) -To compile OpenRA, open the `OpenRA.sln` solution in the main folder, -or build it from the command-line with MSBuild. +You need to fetch the thirdparty dependencies using [NuGet](http://www.nuget.org) and place them at the appropriate places by typing `make dependencies` in a command terminal. -Copy both the native DLLs from `.\thirdparty\windows` -and the CLI images from `.\thirdparty` to the main folder. +To compile OpenRA, open the `OpenRA.sln` solution in the main folder, build it from the command-line with MSBuild or use the Makefile analogue command `make all` scripted in PowerShell syntax. -Run the game with `OpenRA.Game.exe Game.Mod=ra` for Red Alert -or `OpenRA.Game.exe Game.Mod=cnc` for Tiberian Dawn. +Run the game with `OpenRA.Game.exe Game.Mod=ra` for Red Alert or `OpenRA.Game.exe Game.Mod=cnc` for Tiberian Dawn. Linux ===== -Run `make dependencies` to map the native libraries to your system and copy the managed ones. +Use `make dependencies` to map the native libraries to your system, fetch the remaining CLI dependencies using [NuGet](http://www.nuget.org) and place them at the appropriate places. To compile OpenRA, run `make all` from the command line.