diff options
author | Arisotura <thetotalworm@gmail.com> | 2019-06-06 16:10:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-06 16:10:55 +0200 |
commit | 6b09953b250a71b75f587ce0d41fae6e3fbbe6e5 (patch) | |
tree | cfdf7a82d72522ee738f436ad2e2e90a5b88fb5a /README.md | |
parent | eaaf5ec93b7ff5d0de885ed276e7357dcf44ce1f (diff) | |
parent | 8cc6b988bf0140140cc93efa2c3fc0ec72a3158a (diff) |
Merge pull request #420 from Ace4896/update-readme
Update dependencies in README
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -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 ``` |