Hi,
I am encountering some issues with one project. I need to use two libraries but one needs to be compiled with the /clr
switch as the other cannot be compiled with this switch.
Would there be a way to use at the same time those two libraries in one project? Currently it's compiled with /clr
and I got linking errors with the noclr
library.
If there is no solution I can still launch the noclr
library in batchmode but I'd like to avoid it...
My project is in Managed C++, the library tetgen - which needs /clr - is in native C++ and cannot be compiled without the /clr switch, as I get this error
error C3381: 'tetgenio' : assembly access specifiers are only available in code compiled with a /clr option
The other library triangle is in C. I am on Visual Studio 2008 and the project is compiled in 32 bits.
Thanks a lot for any help!