From 6cb722a4700e8a25efa704e344de8583906e674d Mon Sep 17 00:00:00 2001 From: Kory Draughn Date: Wed, 27 Sep 2023 16:12:37 -0400 Subject: [PATCH] [171] Updated build instructions in README. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c39dcd2..8bf43e3 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,8 @@ irods-externals-spdlog Create and enter a build directory, run CMake (make sure it is visible in your `$PATH`), and then make the REST API package: ``` -$ mkdir build && cd build && cmake .. +$ mkdir build && cd build +$ cmake -DIRODS_BUILD_WITH_WERROR=NO .. $ make -j package ``` @@ -66,8 +67,8 @@ This repository provides a Dockerfile with all of the tools needed to build a pa The builder image itself must first be built. This can be done by running the following: ```bash -cd docker/builder -docker build -t irods-client-rest-cpp-builder:ubuntu-20.04 . +$ cd docker/builder +$ docker build -t irods-client-rest-cpp-builder:ubuntu-20.04 . ``` This will produce a Docker Image with tag `irods-client-rest-cpp-builder:ubuntu-20.04`. The tag can be anything, as long as it is used consistently.