So What configuration or files or pluggins I need to configure C::B.
I don't know because I don't know neither the SDK nor the compiler framework you are using.
All I can say is (in the project options):
- Setup the include path's for the compiler as needed so the compiler can find all header files needed and provided by this SDK
- Setup the include path's for the linker as needed so the linker can find all libraries you need to link aginst
- Setup the libraries you need to link against as needed so the linker can resolve all symbols. This may not only apply for the libraries of the SDK you are referring to but also to the required libraries the SDK itself needs (say SDK A needs libraries of SDK B so you'll most likely need to add these libraries, too).
- Consult the SDK's documentation accoring what to setup
- Consult C::B documentation about where to put these options.
This is the very same for *every* SDK. If still unsure ask the devs of the SDK's about dependencies and setup options. Include path's and files to link aginst is the same at least for every compiler framework I know (including VC++ and MinGW/GCC).