Skip to content

Commit

Permalink
Final cleanup before merging
Browse files Browse the repository at this point in the history
  • Loading branch information
ll-nick committed Dec 19, 2024
1 parent bf8e41e commit cd1892c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ endif()

list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")

find_package(Glog)

find_package(Glog REQUIRED)
find_package(util_caching REQUIRED)
find_package(Yaml-cpp REQUIRED)

Expand Down Expand Up @@ -153,3 +152,4 @@ install(DIRECTORY ${PROJECT_SOURCE_DIR}/include/
include(cpack_config)
include(CPack)

message(STATUS "Components to pack: ${CPACK_COMPONENTS_ALL}")
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ PYBIND11_MODULE(arbitration_graphs, m) {
python_api::bindArbitrationGraphs<MyCommand>(m);
}
```
and use them in Python by for example implementing a custom behavior that inherits from the abstract `Behavior` class.
and use them in Python.
For example, you could implement a custom behavior that inherits from the abstract `Behavior` class.
```python
from arbitration_graphs import Behavior
Expand All @@ -196,7 +197,6 @@ class MyBehavior(Behavior):
```
We re-implemented all of the C++ unit tests in Python, so take a closer look at those for more advanced usage examples.

</details>

## Development

Expand Down

0 comments on commit cd1892c

Please sign in to comment.