https://github.com/chokobole/felicia-zed
https://github.com/chokobole/felicia-zed
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/chokobole/felicia-zed
- Owner: chokobole
- License: bsd-3-clause
- Created: 2019-11-12T13:40:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-19T12:59:34.000Z (over 5 years ago)
- Last Synced: 2025-02-17T03:42:51.443Z (3 months ago)
- Language: C++
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Felicia Zed
## Prerequisites
Follow the instruction at [Installation Guide](https://www.stereolabs.com/docs/getting-started/installation/).
## WORKSPACE setup
```python
bind(
name = "felicia",
actual = "@com_github_chokobole_felicia//felicia:felicia",
)bind(
name = "felicia_zed",
actual = "@com_github_chokobole_felicia_zed//:zed",
)git_repository(
name = "com_github_chokobole_felicia",
remote = "https://github.com/chokobole/felicia.git",
commit = "",
)git_repository(
name = "com_github_chokobole_felicia_zed",
remote = "https://github.com/chokobole/felicia-zed.git",
commit = "",
)load("@com_github_chokobole_felicia//bazel:felicia_deps.bzl", "felicia_deps")
felicia_deps()
load("@com_github_chokobole_felicia_zed//:zed_deps.bzl", "zed_deps")
zed_deps()
```## Example
```python
load("@com_github_chokobole_felicia//bazel:felicia_cc.bzl", "fel_cc_native_binary")fel_cc_native_binary(
name = "",
...,
deps = [
"//external:felicia_zed",
],
)
```Check out examples [here](https://github.com/chokobole/felicia-examples/blob/master/examples/learn/topic/stereo_camera/cc/BUILD).