Skip to content

Importing the OSDP library into the project #180

Closed Answered by sidcha
mbrazdil asked this question in Q&A
Discussion options

You must be logged in to vote

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:

├── include
│   └── osdp.h
├── src
│   ├── crypto
│   │   ├── tinyaes.c
│   │   ├── tinyaes_src.c
│   │   └── tinyaes_src.h
│   ├── osdp_common.c
│   ├── osdp_common.h
│   ├── osdp_config.h   <------ This file must be g…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by sidcha
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants