diff --git a/README.md b/README.md index 495b6c2..22af59c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # OpenTDF - client-cpp + Minimal c/c++ client to generate and access TDF files ## Building @@ -15,13 +16,15 @@ To build the client the following dependencies are needed Using [Hombrew](https://brew.sh) (for Mac and Linux) ``` -brew install conan cmake +brew install conan@1 cmake ``` ### Installing a published release with Conan (recommended, will prefer prebuilt binaries but build missing deps from source) -``` sh + +```sh conan install opentdf-client/1.1.3@ --build=missing ``` + For more details on Conan and publishing, see [OpenTDF/client-conan](https://github.com/opentdf/client-conan) ### Local In-Tree Building @@ -32,4 +35,3 @@ For more details on Conan and publishing, see [OpenTDF/client-conan](https://git ### Local In-Tree Building+Testing 1. `sh build-and-run-sanity-test.sh` - diff --git a/build-and-run-sanity-test.sh b/build-and-run-sanity-test.sh index a21d4ea..0708680 100755 --- a/build-and-run-sanity-test.sh +++ b/build-and-run-sanity-test.sh @@ -5,7 +5,7 @@ export VRUN_BACKEND_TESTS="true" export VBUILD_UNIT_TESTS="true" export VEXPORT_COMBINED_LIB="true" -cd ../../src && ./build-all.sh +cd ./src && ./build-all.sh if [[ -z "${VEXPORT_COMBINED_LIB}" ]]; then echo "Skip building the sample" @@ -14,7 +14,5 @@ else cd ../examples && mkdir build && cd build && cmake .. && make echo "Run the sanity test" - ./tdf_sample + ./tdf_sample fi - -