Skip to content

Commit 5f7ab56

Browse files
authored
Update install.md
1 parent d0d4095 commit 5f7ab56

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

docs/install.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,16 @@
4545
2. Install [Homebrew](http://brew.sh/).
4646
3. Copy `cd ./src && cp ./resources/Info.plist.sample ./resources/Info.plist`.
4747
4. Building RDM dependencies require i.a. `openssl`, `cmake` and `python3`. Install them: `brew install openssl cmake python3`
48-
5. Install Python requirements `pip3 install -t ../bin/osx/release -r py/requirements.txt`
49-
6. Install [Qt 5.15](http://www.qt.io/download-open-source/#section-2). Add Qt Creator and under Qt 5.15.x add Qt Charts module.
50-
7. Open `./src/rdm.pro` in **Qt Creator**.
51-
8. Run build.
48+
5. Build lz4 lib
49+
```
50+
cd 3rdparty/lz4/build/cmake
51+
cmake -DLZ4_BUNDLED_MODE=ON .
52+
make
53+
```
54+
6. Install Python requirements `pip3 install -t ../bin/osx/release -r py/requirements.txt`
55+
7. Install [Qt 5.15](http://www.qt.io/download-open-source/#section-2). Add Qt Creator and under Qt 5.15.x add Qt Charts module.
56+
8. Open `./src/rdm.pro` in **Qt Creator**.
57+
9. Run build.
5258
5359
### Build on Windows
5460
@@ -57,7 +63,13 @@
5763
3. Go to `3rdparty/qredisclient/3rdparty/hiredis` and apply the patch to fix compilation on Windows:
5864
`git apply ../hiredis-win.patch`
5965
4. Go to the `3rdparty/` folder and install zlib with `nuget`: `nuget install zlib-msvc14-x64 -Version 1.2.11.7795`
60-
5. Install Python 3.7 amd64 to `C:\Python37-x64`.
61-
6. Install Python requirements `pip3 install -r src/py/requirements.txt`.
62-
7. Open `./src/rdm.pro` in **Qt Creator**. Choose the `Desktop Qt 5.15.x MSVC2019 64bit > Release` build profile.
63-
8. Run build. (Just hit `Ctrl-B`)
66+
5. Build lz4 lib
67+
```
68+
cd 3rdparty/lz4/build/cmake
69+
cmake -DLZ4_BUNDLED_MODE=ON .
70+
make
71+
```
72+
6. Install Python 3.7 amd64 to `C:\Python37-x64`.
73+
7. Install Python requirements `pip3 install -r src/py/requirements.txt`.
74+
8. Open `./src/rdm.pro` in **Qt Creator**. Choose the `Desktop Qt 5.15.x MSVC2019 64bit > Release` build profile.
75+
9. Run build. (Just hit `Ctrl-B`)

0 commit comments

Comments
 (0)