include files
古いコメントを表示
Hello! Help me please.I want to use Ogre3D in mex (for s-function). http://www.ogre3d.org/ But my .cpp file contains OGRE's include files which Matlab doesn't see. In Visual Studio it can be adjusted in properties of solution. http://s001.radikal.ru/i196/1104/e6/e04d2a5746f8.jpg Is it possible to make so in Matlab? I will be grateful for any answer.Thank you.
採用された回答
その他の回答 (2 件)
Natalia
2011 年 4 月 2 日
1 件のコメント
Jarrod Rivituso
2011 年 4 月 2 日
Yes, you will need to add each include path and the library directories. Use the -l and -L flags to add library paths (-l) and actual library files (-L).
Again, the documentation has a table of all supported compiler switches:
http://www.mathworks.com/help/techdoc/ref/mex.html
Natalia
2011 年 4 月 2 日
3 件のコメント
Kaustubha Govind
2011 年 4 月 4 日
You don't have to specify names of header files - the -I option is added for the _directory_ containing the header files. You need something like:
mex -IC:\OgreSDK\samples\include -IC:\OgreSDK\include -I"..\include" -LC:\OgreSDK\lib mymexfile.c -l OgreMain_d.lib -l OIS_d.lib
Yes, simstruc.h is in a MATLAB directory that is automatically included by MEX
Natalia
2011 年 4 月 5 日
Kaustubha Govind
2011 年 4 月 5 日
Glad to be of help. :)
カテゴリ
ヘルプ センター および File Exchange で Adding custom doc についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!