aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLadislav Zezula <zezula@volny.cz>2024-10-21 09:15:15 +0200
committerLadislav Zezula <zezula@volny.cz>2024-10-21 09:15:15 +0200
commitcc17c9bc5a6d5a85487beef60eab36e1c1513e00 (patch)
tree9fa1a2748eae7afae36395a5f9ab5fab65be50f1
parent8c7a726557ca218c07548979451924f5727cbf9f (diff)
Updated build instructions
-rw-r--r--README.md23
1 files changed, 12 insertions, 11 deletions
diff --git a/README.md b/README.md
index 6dc69f1..5872a0b 100644
--- a/README.md
+++ b/README.md
@@ -3,17 +3,6 @@
This is official repository for the StormLib library, an open-source project that can work with Blizzard MPQ archives.
## Installation and basic usage
-### Linux
-1. Download latest release
-2. Install StormLib:
-```
-$ cd <path-to-StormLib>
-$ cmake CMakeLists.txt
-$ make
-$ make install
-```
-3. Include StormLib in your project: `#include <StormLib.h>`
-4. Make sure you compile your project with `-lstorm -lz -lbz2`
### Windows (Visual Studio 2022)
0. Make sure you have the toolset for Visual Studio 2017 - Windows XP installed
@@ -39,3 +28,15 @@ Note that you can also build the library using newer toolset, such as v143. To d
* Y: A = ANSI build, U = Unicode build
* Z: S = Using static CRT library, D = Using Dynamic CRT library
3. Rebuild
+
+### Linux
+1. Download latest release
+2. Install StormLib:
+```
+$ cd <path-to-StormLib>
+$ cmake CMakeLists.txt
+$ make
+$ make install
+```
+3. Include StormLib in your project: `#include <StormLib.h>`
+4. Make sure you compile your project with `-lstorm -lz -lbz2`