Skip to content

Commit

Permalink
chore(deps): remove autoware.repos
Browse files Browse the repository at this point in the history
Signed-off-by: ktro2828 <[email protected]>
  • Loading branch information
ktro2828 committed Aug 30, 2024
1 parent 637e482 commit 1ffb5ab
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 14 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,4 @@ jobs:
with:
package-name: ${{ steps.list_packages.outputs.packages }}
target-ros2-distro: ${{ matrix.rosdistro }}
vcs-repo-file-url: autoware.repos
import-token: ${{ secrets.GITHUB_TOKEN }}
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ COLCON_IGNORE
# VSCode
.vscode

# Clang
compile_flags.txt

.cache
html
latex
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ AWViz-ROS features a ROS viewer for [Autoware](https://autoware.org) powered by
git clone [email protected]:ktro2828/awviz-ros && cd awviz-ros

# import external dependencies
mkdir src && vcs import src < autoware.repos
rosdep update
rosdep install -y --from-paths . --ignore-src --rosdistro $ROS_DISTRO

# build awviz
# build awviz packages
colon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Release
source install/setup.bash
```
Expand Down
5 changes: 0 additions & 5 deletions autoware.repos

This file was deleted.

3 changes: 2 additions & 1 deletion awviz/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ endif()

# -------- find dependencies --------
find_package(ament_cmake_auto REQUIRED)
find_package(rerun_sdk REQUIRED)
ament_auto_find_build_dependencies()

# -------- add executable --------
add_executable(${PROJECT_NAME} src/main.cpp)
target_link_libraries(${PROJECT_NAME} awviz_common::awviz_common)
target_link_libraries(${PROJECT_NAME} awviz_common::awviz_common rerun_sdk)

# -------- install executable --------
install(TARGETS ${PROJECT_NAME}
Expand Down
1 change: 0 additions & 1 deletion awviz/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

<depend>rclcpp</depend>
<depend>awviz_common</depend>
<depend>rerun_sdk</depend>

<test_depend>ament_lint_auto</test_depend>
<test_depend>ament_lint_common</test_depend>
Expand Down
1 change: 1 addition & 0 deletions awviz_plugin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ endif()

# -------- find dependencies --------
find_package(ament_cmake_auto REQUIRED)
find_package(rerun_sdk REQUIRED)
ament_auto_find_build_dependencies()

# -------- link targets --------
Expand Down
2 changes: 1 addition & 1 deletion awviz_plugin/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<depend>awviz_common</depend>
<depend>cv_bridge</depend>
<depend>pluginlib</depend>
<depend>rerun_sdk</depend>
<depend>sensor_msgs</depend>
<depend>rclcpp</depend>
<depend>autoware_perception_msgs</depend>

<test_depend>ament_lint_auto</test_depend>
Expand Down

0 comments on commit 1ffb5ab

Please sign in to comment.