How to include a multi-file C++ library to S-function builder?
15 ビュー (過去 30 日間)
古いコメントを表示
Dear all, nowadays I´m facing a problem with S-function builder block. I need to include the libtorch library in order to run it on a real-time platform, the problem is The library is made up of a lot of files thats includes another files. I know that if I want to include external libraries I should use """ instead of <> to include the libraries at the "Libraries" Tab in S-function builder, however the file that I include, includes other files but using <> and those files calls others files using <> and so on. There is a way to include the whole library in the S-function?
This is my workspace, the alreay generated mex and wrapper are only a test, no included libraries on it.
These are the first header files, I need to include "script.h" in order to initialize the objects of the library, each of the includes inside script.h includes more .h files :C. I can include "script.h", but it fails when simulink tryes to include the other files:
There is a way to include the whole library? Please help.
0 件のコメント
回答 (1 件)
Dinesh Yadav
2020 年 6 月 2 日
Hi Gabriel,
I think the above error is more related to the path. If you have included the "script.h" it includes the internal include files as well provided you have set the path (i.e MATLAB knows where to find the internal include files as well, see link). Also I couldnt help but notice the mismatched backward and forward slashes in the file path shown in the error.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!