Skip to content

Commit 08d4914

Browse files
authored
refactor(polar_grid): add autoware prefix to polar_grid (#8945)
Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
1 parent 328ffa9 commit 08d4914

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

common/polar_grid/CMakeLists.txt common/autoware_polar_grid/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.14)
2-
project(polar_grid)
2+
project(autoware_polar_grid)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()
@@ -10,12 +10,12 @@ set(CMAKE_AUTOMOC ON)
1010
set(CMAKE_INCLUDE_CURRENT_DIR ON)
1111
add_definitions(-DQT_NO_KEYWORDS)
1212

13-
ament_auto_add_library(polar_grid SHARED
13+
ament_auto_add_library(${PROJECT_NAME} SHARED
1414
src/polar_grid_display.cpp
1515
src/polar_grid_display.hpp
1616
)
1717

18-
target_link_libraries(polar_grid
18+
target_link_libraries(${PROJECT_NAME}
1919
${QT_LIBRARIES}
2020
)
2121

File renamed without changes.

common/polar_grid/package.xml common/autoware_polar_grid/package.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0"?>
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
4-
<name>polar_grid</name>
4+
<name>autoware_polar_grid</name>
55
<version>0.1.0</version>
6-
<description>The polar_grid package</description>
6+
<description>The autoware_polar_grid package</description>
77
<maintainer email="yukihiro.saito@tier4.jp">Yukihiro Saito</maintainer>
88
<license>Apache License 2.0</license>
99

common/polar_grid/plugins/plugin_description.xml common/autoware_polar_grid/plugins/plugin_description.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<library path="polar_grid">
1+
<library path="autoware_polar_grid">
22
<class name="rviz_plugins/PolarGridDisplay"
33
type="rviz_plugins::PolarGridDisplay"
44
base_class_type="rviz_common::Display">

0 commit comments

Comments
 (0)