|
Revision 707, 0.9 kB
(checked in by smidl, 16 years ago)
|
|
matlab 7.1 compile prerequisities
|
| Line | |
|---|
| 1 | // Copyright 1997-2004 The MathWorks, Inc. |
|---|
| 2 | // $Revision: 1.6.4.2 $ $Date: 2004/08/17 21:22:27 $ |
|---|
| 3 | // |
|---|
| 4 | // Mex versioning resource file |
|---|
| 5 | // this should be compiled with the V5_COMPAT and ARRAY_ACCESS_INLINING |
|---|
| 6 | // defines if they apply. |
|---|
| 7 | // |
|---|
| 8 | // DO NOT EDIT - this is for MATLAB use only |
|---|
| 9 | |
|---|
| 10 | ///////////////////////////////////////////////////////////////////////////// |
|---|
| 11 | // Define strings, |
|---|
| 12 | // ML_VERSION is the version of Matlab that the mex file is built against. |
|---|
| 13 | // INLINING determines in inlining was switched on or not. |
|---|
| 14 | |
|---|
| 15 | #define ML_VERSION 100 |
|---|
| 16 | #define INLINING 101 |
|---|
| 17 | |
|---|
| 18 | ///////////////////////////////////////////////////////////////////////////// |
|---|
| 19 | // |
|---|
| 20 | // String Table |
|---|
| 21 | // |
|---|
| 22 | |
|---|
| 23 | STRINGTABLE |
|---|
| 24 | BEGIN |
|---|
| 25 | #ifdef V5_COMPAT |
|---|
| 26 | ML_VERSION, "MATLAB 5 compatible" |
|---|
| 27 | #else |
|---|
| 28 | ML_VERSION, "MATLAB R14 native" |
|---|
| 29 | #endif |
|---|
| 30 | #ifdef ARRAY_ACCESS_INLINING |
|---|
| 31 | INLINING, "inlined" |
|---|
| 32 | #else |
|---|
| 33 | INLINING, "not inlined" |
|---|
| 34 | #endif |
|---|
| 35 | END |
|---|
| 36 | |
|---|