-
How can I compile the libnvc as shared library in order to embbed the nvc functionality into my own main application ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This isn't supported: you need to do it the other way round and compile your application to a shared library which you load as a plugin with The existing static library is just a convineince for the build system and not something that is exposed to end users. Even if there was a shared library with stable interfaces I doubt it would be useful to most users as the resultant program would be covered by the GPL and couldn't be distributed without the corresponding sources. |
Beta Was this translation helpful? Give feedback.
This isn't supported: you need to do it the other way round and compile your application to a shared library which you load as a plugin with
--load
.The existing static library is just a convineince for the build system and not something that is exposed to end users. Even if there was a shared library with stable interfaces I doubt it would be useful to most users as the resultant program would be covered by the GPL and couldn't be distributed without the corresponding sources.