0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

プラグインにアイコンをつける

Last updated at Posted at 2021-03-11

rviz2プラグインの作り方 トップページへ

アイコンの画像ファイルを以下のように配置

 plugins/
  ├ src/
  │ ├ aaa.hpp
  │ ├ aaa.cpp
  │ ├ bbb.hpp
  │ └ bbb.cpp
  ├ icon/
  │ └ classes/
  │   ├ aaa.png
  │   └ bbb.png
  ├ CMakeLists.txt
  ├ package.xml
  └ plugins_description.xml

CMakeLists.txt に以下を追加

CMakeLists.txt
install(DIRECTORY icons
  DESTINATION share/${PROJECT_NAME}
)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?