File: README.md

package info (click to toggle)
libcbor 0.10.2-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,440 kB
  • sloc: ansic: 8,540; makefile: 157; cpp: 101; python: 90; sh: 81; ruby: 6
file content (33 lines) | stat: -rw-r--r-- 331 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Bazel Example

This directory shows an example of using LibCbor in a project that builds with Bazel.

## Compile

To build the project:

```shell
bazel build src:all
```

## Test

To test the code:

```shell
bazel test src:all
```

## Run

To run the demo:

```shell
bazel run src:hello
```

or

```shell
bazel-bin/src/hello
```