Skip to content

Commit

Permalink
refactor(polar_grid): add autoware prefix to polar_grid
Browse files Browse the repository at this point in the history
Signed-off-by: Esteve Fernandez <[email protected]>
  • Loading branch information
esteve committed Sep 24, 2024
1 parent 897e2a9 commit e14175f
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
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

0 comments on commit e14175f

Please sign in to comment.