docs: add conan package ref to readme
diff --git a/README.md b/README.md
index 98392cb..d628117 100644
--- a/README.md
+++ b/README.md
@@ -29,15 +29,47 @@
 
 Building with `cmake`:
 
-    ./build.sh
+```sh
+mkdir build
+cd build
+cmake ..
+cmake --build . -- all
 
-Building including testing:
-
-    ./build.sh all test
+```
 
 Generating a test coverage report (requires lcov[^1]; result in `build/lcov/index.html`):
 
-    ./build.sh all coveralls coverage_report
+```sh
+rm -rf build
+mkdir build
+cd build
+cmake .. -Dcoveralls_send=ON
+cmake --build . -- all coveralls coverage_report
+```
+
+## Consuming
+
+### With cmake
+
+find_package
+```cmake
+find_package(cn-cbor)
+add_executable(myapp main.cpp)
+target_link_libraries(myapp cn-cbor::cn-cbor)
+```
+
+add_subdirectory
+```cmake
+add_subdirectory(vendor/cn-cbor)
+add_executable(myapp main.cpp)
+target_link_libraries(myapp cn-cbor::cn-cbor)
+```
+
+### With Conan
+
+This package is available in the [conan center](https://conan.io/center/cn-cbor/1.0.0)
+
+add `cn-cbor/1.0.0` to you conan file
 
 License: MIT