Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(polar_grid): add autoware prefix to polar_grid #8945

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.14)
project(polar_grid)
project(autoware_polar_grid)

find_package(autoware_cmake REQUIRED)
autoware_package()
Expand All @@ -10,12 +10,12 @@ set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
add_definitions(-DQT_NO_KEYWORDS)

ament_auto_add_library(polar_grid SHARED
ament_auto_add_library(${PROJECT_NAME} SHARED
src/polar_grid_display.cpp
src/polar_grid_display.hpp
)

target_link_libraries(polar_grid
target_link_libraries(${PROJECT_NAME}
${QT_LIBRARIES}
)

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>polar_grid</name>
<name>autoware_polar_grid</name>
<version>0.1.0</version>
<description>The polar_grid package</description>
<description>The autoware_polar_grid package</description>
<maintainer email="[email protected]">Yukihiro Saito</maintainer>
<license>Apache License 2.0</license>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<library path="polar_grid">
<library path="autoware_polar_grid">
<class name="rviz_plugins/PolarGridDisplay"
type="rviz_plugins::PolarGridDisplay"
base_class_type="rviz_common::Display">
Expand Down
Loading