multiple rqt plugins in package

asked 2016-01-27 06:37:37 -0500

NLZ gravatar image

updated 2016-01-27 07:49:32 -0500

I just figured out that to have multiple rqt plugins in the same package, you have to have multiple plugin.xml mentioned in the package.xml like this:

<package>
  :
  <!-- all the existing tags -->
  <export>
    <rqt_gui plugin="${prefix}/plugin1.xml"/>
    <rqt_gui plugin="${prefix}/plugin2.xml"/>
    :
  </export>
  :
</package>

As far as I see, all the default rqt plugin has different package, so maybe its not recommended?

My question is, Is this method recommended? If so, should it be mentioned in the wiki?

edit retag flag offensive close merge delete

Comments

"multiple package.xml mentioned in the package.xml" you mean multiple plugin.xml?

Javier V. Gómez gravatar image Javier V. Gómez  ( 2016-01-27 07:27:26 -0500 )edit

yes, fixed, thanks

NLZ gravatar image NLZ  ( 2016-01-27 07:49:47 -0500 )edit