From a409132f69b276643a8555a678df6256c037402e Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 5 Dec 2021 17:28:27 -0600 Subject: [PATCH] Marked build.sh as executable and updated README.md to note that build.sh exists and is useful --- README.md | 8 ++++++++ build.sh | 0 2 files changed, 8 insertions(+) mode change 100644 => 100755 build.sh diff --git a/README.md b/README.md index d724be24..ffe740db 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,14 @@ If you're using a DLU client, then you don't need to change anything. But if you Make sure packages like `gcc`, `cmake`, and `zlib` are installed. Depending on the distribution, these packages might already be installed. Note that on systems like Ubuntu, you will need the `zlib1g-dev` package so that the header files are available. **Build the repository** +You can either run `build.sh` when in the root folder of the repository: + +```bash +./build.sh +``` + +Or manually run the commands used in `build.sh`: + ```bash # Create the build directory, preserving it if it already exists mkdir -p build diff --git a/build.sh b/build.sh old mode 100644 new mode 100755