chore: add instructions for dependency installation

This commit is contained in:
dancingCycle 2023-01-17 12:23:12 +01:00
parent aeb2d44b35
commit 85162a14d5
3 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,9 @@
* install dependencies on Debian Bullseye
```
sudo apt install libulfius-dev --no-install-recommends
```
* build
```

View File

@ -116,7 +116,7 @@ int callback_get_hello (const struct _u_request * request, struct _u_response *
json_decref(integer1);
json_decref(integer2);
size = json_array_size(array);
fprintf(stdout,"main() size: %ld\n", size);
fprintf(stdout,"main() size(array): %ld\n", size);
ulfius_set_json_body_response(response, 200, array);
json_decref(array);

View File

@ -1,3 +1,9 @@
* install dependencies on Debian Bullseye
```
sudo apt install libulfius-dev --no-install-recommends
```
* build
```