how to integrate a new plugin into the solutions #349
Answered
by
njroussel
JiangGuotai
asked this question in
Q&A
-
I wrote a new plugin(sensor), but if i just simplily put it in the src/sensor and change the cmake file in the folder, the generated .sln cannot be complied correctly, so, are there some roadmaps if I wanna put my plugin in .sln and complie it correctly? |
Beta Was this translation helpful? Give feedback.
Answered by
njroussel
Oct 24, 2022
Replies: 1 comment 1 reply
-
This should work. As you mentioned, only two steps are usually required:
Could you share the error message you're getting? Ideally, also your new plugin source code. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
JiangGuotai
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This should work.
As you mentioned, only two steps are usually required:
src/<plugin_type>
folderadd_plugin(mynewplugin mynewplugin.cpp)
line tosrc/<plugin_type>/CMakeLists.txt
Could you share the error message you're getting? Ideally, also your new plugin source code.