Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sink_service/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ add_compile_options(-Wall -Werror -Wextra -Wno-unused-parameter)

set(SINK_SERVICE_VERSION "<unknown>" CACHE STRING "Sink service version string")

set(C_MESH_API_COMMIT_HASH b70b379c8bb4f44b151f99d0af321abe84b63455)
set(C_MESH_API_COMMIT_HASH 8ff812452b50ee962f16f55fedf386da8797e380)

include(FetchContent)
FetchContent_Declare(
Expand Down
8 changes: 8 additions & 0 deletions sink_service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,12 @@ cmake --build build
```
Built sinkService will be generated under build/ folder.

### Using a local copy of c-mesh-api for development purposes

To use a local copy of the c-mesh-api dependency, the cmake command can be
invoked like the following:

```shell
cmake -DFETCHCONTENT_SOURCE_DIR_C-MESH-API=<path_to_c-mesh-api> -S . -B build
```