How can we use forms and the SDK?

How can we use forms and the SDK?

polugio's picture

I get this error after addng a form to one of the sample projects.

Error 1 error D8016: '/clr' and '/MTd' command-line options are incompatible 

How can we use forms and the SDK?

6 posts / 0 new
Last post
For more complete information about compiler optimizations, see our Optimization Notice.
David Lu (Intel)'s picture

Can you provide us more detail info so we can find the problem? Thanks! 

polugio's picture

David, thanks for the reply. I've resolved he issue,

Abhishek 81's picture

@polugio were you able to upload the prototype?What kind of app submission you have made?

Abhishek Nandy
Chuck De Sylva (Intel)'s picture

polugio,

The /clr option isn't compatible with the /MT (multi threaded). Check this page to see the restrictions when using the /clr:
http://msdn2.microsoft.com/en-us/library/ffkc918h.aspx

To solve the problem, go to your project properties->C/C++->Code Generation->Runtime Library->Multi-threaded Debug DLL (/MDd)
(or Multi-threaded DLL (/MD) for release configuration)

- Chuck

Martin H.'s picture

polugio,

How did you solve the problem? I am new to C++ !!

Regards,

Marty Habicht

Login to leave a comment.