-
Hello, I am working on a project in the MCUXpresso IDE (C language) and I have the task to import the OSDP library into the project. I've read everything, but nowhere can I find a procedure to add this library to the project. Which parts of the library exactly should I copy into the project? Or do I have to compile the library? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @mbrazdil, The typical work flow is to compile LibOSDP to target architecture and then link it to your project. I'm not familiar with this particular IDE, but I'm fairly confident this can be done; and it is the best way to add new platform support (please send PRs if you managed to do this). The other (hacky) way is to import the source files into your project and build them as your own sources. If you are taking this route, these are all the files you'd have to build:
Some change might be needed to |
Beta Was this translation helpful? Give feedback.
Hi @mbrazdil, The typical work flow is to compile LibOSDP to target architecture and then link it to your project. I'm not familiar with this particular IDE, but I'm fairly confident this can be done; and it is the best way to add new platform support (please send PRs if you managed to do this).
The other (hacky) way is to import the source files into your project and build them as your own sources. If you are taking this route, these are all the files you'd have to build: