The link errors indicate you&#39;re linking things built with the static runtime (/MT) and the dynamic runtime (/MD). By default CMake uses the /MD Flags. Did you change them to /MT? In either case you want them to be the same for everything you&#39;re trying to build.<br>

<br><div class="gmail_quote">On Mon, Sep 6, 2010 at 4:46 PM, Dr. X <span dir="ltr">&lt;<a href="mailto:xunlei@renci.org">xunlei@renci.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

 Hi All,<br>
The default build of Xdmf.vcproj have the following bugs:<br>
====================================================<br>
Errors:<br>
Error 326 error C2146: syntax error : missing &#39;;&#39; before identifier &#39;fd&#39;<br>
d:\mysql5.1\include\mysql_com.h 243 Xdmf<br>
Error 327 error C4430: missing type specifier - int assumed. Note: C++<br>
does not support default-int d:\mysql5.1\include\mysql_com.h 243 Xdmf<br>
Error 328 error C4430: missing type specifier - int assumed. Note: C++<br>
does not support default-int d:\mysql5.1\include\mysql_com.h 243 Xdmf<br>
Error 329 error C2065: &#39;SOCKET&#39; : undeclared identifier<br>
d:\mysql5.1\include\mysql_com.h 427 Xdmf<br>
Error 330 error C2146: syntax error : missing &#39;)&#39; before identifier &#39;s&#39;<br>
d:\mysql5.1\include\mysql_com.h 427 Xdmf<br>
Error 331 error C2059: syntax error : &#39;)&#39;<br>
d:\mysql5.1\include\mysql_com.h 428 Xdmf<br>
<br>
Fix:<br>
Add the following lines in d:\mysql5.1\include\mysql_com.h<br>
<br>
#if defined(__WIN__)<br>
#include &lt;WinSock2.h&gt;<br>
#endif /* __WIN__ */<br>
====================================================<br>
Errors:<br>
Error 3 error LNK2005: _amsg_exit already defined in<br>
MSVCRTD.lib(MSVCR90D.dll) LIBCMT.lib Xdmf<br>
Error 4 error LNK2005: _initterm_e already defined in<br>
MSVCRTD.lib(MSVCR90D.dll) LIBCMT.lib Xdmf<br>
Error 5 error LNK2005: exit already defined in MSVCRTD.lib(MSVCR90D.dll)<br>
LIBCMT.lib Xdmf<br>
...<br>
<br>
Fix:<br>
Add &quot;libcmt&quot; in Xdmf Property Pages -&gt; Configuration Properties -&gt;<br>
Linker -&gt; Input -&gt; Ignore Specific Library for both Debug and Release build.<br>
<br>
For the libcmt errors, how can I patch the corresponding CMakeLists.txt<br>
file? Thanks a lot.<br>
<br>
Best,<br>
x<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
</blockquote></div><br>