mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 03:59:38 +00:00
documentation: updated build steps
This commit is contained in:
parent
82a6aff5a4
commit
2d0a4caf76
1 changed files with 21 additions and 1 deletions
22
README.md
22
README.md
|
@ -1,4 +1,3 @@
|
|||
|
||||
Copyright (c) 2014-2016, The Monero Project
|
||||
|
||||
## Development Resources
|
||||
|
@ -162,3 +161,24 @@ TODO
|
|||
```
|
||||
pacman -S mingw-w64-x86_64-qt5
|
||||
```
|
||||
5. Open ```mingw``` shell. MSYS2 will install start menu items for both mingw32 and mingw64 environments, so
|
||||
you need to open appropriate one:
|
||||
```%MSYS_ROOT%\msys2_shell.cmd -mingw32``` for x86 targed
|
||||
or
|
||||
```%MSYS_ROOT%\msys2_shell.cmd -mingw64``` for x64 targed
|
||||
|
||||
Where ```%MSYS_ROOT%``` will be ```c:\msys32``` if your host OS is x86-based or ```c:\msys64``` if your host OS
|
||||
is x64-based
|
||||
6. Clone git repository:
|
||||
```
|
||||
git clone https://github.com/monero-project/monero-core.git
|
||||
```
|
||||
|
||||
7. Build the project:
|
||||
```
|
||||
cd monero-core
|
||||
./build.sh
|
||||
```
|
||||
8. Take result binary and dependencies in ```./build/release/bin```
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue