aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-10-13 15:35:57 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-10-19 20:46:56 +0300
commit2d0a4caf763ff6d5d57a3c450929d737f5cd3a35 (patch)
treea6c38bde1303addac1ed9f3b54832677d42d25b6
parent82a6aff5a476051ea66b0087a38f49323371aa20 (diff)
downloadmonzero-gui-2d0a4caf763ff6d5d57a3c450929d737f5cd3a35.tar.gz
monzero-gui-2d0a4caf763ff6d5d57a3c450929d737f5cd3a35.tar.xz
monzero-gui-2d0a4caf763ff6d5d57a3c450929d737f5cd3a35.zip
documentation: updated build steps
-rw-r--r--README.md22
1 files changed, 21 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6c506cc6..924344e3 100644
--- a/README.md
+++ b/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```
+
+