diff options
author | betty "reenii" bessa <56133320+niiree@users.noreply.github.com> | 2022-06-06 19:07:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-06 19:07:59 +0000 |
commit | abc448eca0c754ea7cee0d2f9bfcaa4bbe1245b4 (patch) | |
tree | d89b7d1018a0ec92a8d6bcb030869b5b7109d3f1 /README.md | |
parent | 4ec5c1dfccaa5ce3bce5dc22a95e91d781262345 (diff) | |
download | abaddon-portaudio-abc448eca0c754ea7cee0d2f9bfcaa4bbe1245b4.tar.gz abaddon-portaudio-abc448eca0c754ea7cee0d2f9bfcaa4bbe1245b4.zip |
readme: Simplify submodule install process. (#81)
* readme: Simplify submodule install process.
Not only the linux version did not include any instructions on getting submodules (thus, attempting to follow the guide line-by-line would cause in a unavoiable cmake configure halt before even building), But the usage of `submodule init/update` in it's own can be simplified by using the `--recursive` flag directly in the clone instead.
* Only target "submodules" folder for cloning
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -59,18 +59,17 @@ the result of fundamental issues with Discord's thread implementation. #### Mac: -1. `git clone https://github.com/uowuo/abaddon && cd abaddon` +1. `git clone https://github.com/uowuo/abaddon --recurse-submodules="subprojects" && cd abaddon` 2. `brew install gtkmm3 nlohmann-json` -3. `git submodule update --init subprojects` -4. `mkdir build && cd build` -5. `cmake ..` -6. `make` +3. `mkdir build && cd build` +4. `cmake ..` +5. `make` #### Linux: 1. Install dependencies: `libgtkmm-3.0-dev`, `libcurl4-gnutls-dev`, and [nlohmann-json](https://github.com/nlohmann/json) -2. `git clone https://github.com/uowuo/abaddon && cd abaddon` +2. `git clone https://github.com/uowuo/abaddon --recurse-submodules="subprojects" && cd abaddon` 3. `mkdir build && cd build` 4. `cmake ..` 5. `make` |