diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-31 15:50:59 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-31 15:50:59 +0100 |
commit | 314354fda83f7f0e4ef11b13322e84997b4ccee0 (patch) | |
tree | aa94e76cc49145a7a1f7f10526555ef52a127029 /readme.md | |
parent | 2d67cf09b80297d13f642afd7db13dba53ca2b9b (diff) |
update build commands in readme
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 27 |
1 files changed, 14 insertions, 13 deletions
@@ -19,28 +19,29 @@ building instructions. ## Installing libraries The expected library (source) versions are included in this repository as git -submodules. Follow these steps for manually building one of the required -libraries from source: +submodules, which may be used if your distro's package manager does not provide +(recent enough versions of) them. To build any of the dependencies, make sure +the submodules are initialized by running: -1. Ensure the git submodules are initialized: - ``` - $ git submodule update --init --recursive --depth 1 - ``` -2. `cd` into the library source folder: +``` +$ git submodule update --init --recursive --depth 1 +``` + +Then, follow these steps for each library you want to install: + +1. Change into the library folder (run **one** of these): ``` $ cd lib/googletest - or $ cd lib/sdl2 - or $ cd lib/soloud/contrib - or $ cd lib/sdl_image ``` -3. Configure the build, run the build and install: +2. Use CMake to configure the build, run the build and install (run **all** of + these): ``` $ cmake -B build -G Ninja - $ ninja -C build - # ninja -C build install + $ cmake --build build + # cmake --install build ``` ## Documentation |