Reputation: 14021
in my project i have enabled /clr (Common Language Runtime) support as well as /MTd (Multithreded Debug) option in code generation section.
But the compiler shows /clr and /MTd are incompatable types. I need to use both.
How to fix this?
Thanks in advance.
Upvotes: 1
Views: 4437
Reputation: 14021
u can not use both optionsin a project because c/clr needs switches for that it must use
dynamic libraries instead of static.if u use /mtd it uses static libraries.so u can not '
use /clr and /mtd
Upvotes: 1
Reputation: 31928
use the /MDd option instead, which is compatible with the /clr
Upvotes: 4