aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJon Pacheco <jon.pacheco2@gmail.com>2019-06-04 16:22:25 +0100
committerJon Pacheco <jon.pacheco2@gmail.com>2019-06-04 16:22:25 +0100
commit8cc6b988bf0140140cc93efa2c3fc0ec72a3158a (patch)
tree15fd5fc08202a724a7e6a8d381bf02bb703474bd /README.md
parent78208a9728bab7b381c8eac570ff42a1936161ba (diff)
Update dependencies in README
- Sorted list of dependencies in alphabetical order - Added mingw-w64-x86_64-mesa to MSYS instructions - Use nproc --all for determining number of make jobs
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 4 insertions, 6 deletions
diff --git a/README.md b/README.md
index 60215a1..b4f05ba 100644
--- a/README.md
+++ b/README.md
@@ -38,7 +38,7 @@ As for the rest, the interface should be pretty straightforward. If you have a q
* Install dependencies:
```sh
-sudo apt-get install libpcap0.8-dev libcurl4-gnutls-dev libsdl2-dev gtk+-3.0
+sudo apt-get install gtk+-3.0 libcurl4-gnutls-dev libpcap0.8-dev libsdl2-dev
```
* Compile:
@@ -47,11 +47,9 @@ sudo apt-get install libpcap0.8-dev libcurl4-gnutls-dev libsdl2-dev gtk+-3.0
mkdir -p build
cd build
cmake ..
-make
+make -j$(nproc --all)
```
-
-
### Windows:
* use CodeBlocks
@@ -61,7 +59,7 @@ make
1. Install [MSYS2](https://www.msys2.org/)
2. Open the **MSYS2 MinGW 64-bit** terminal
3. Update the packages using `pacman -Syu` and reopen the terminal if it asks you to
-4. Install dependencies: `pacman -S mingw-w64-x86_64-{toolchain,SDL2,cmake} make git`
+4. Install dependencies: `pacman -S git make mingw-w64-x86_64-{cmake,mesa,SDL2,toolchain}`
5. Run the following commands
```bash
git clone https://github.com/Arisotura/melonDS.git
@@ -69,7 +67,7 @@ make
mkdir build
cd build
cmake .. -G "MSYS Makefiles"
- make -j5
+ make -j$(nproc --all)
../msys-dist.sh
```