<HTML>
<HEAD>
<TITLE>Re: [Paraview] [PATCH] CMake FOREACH syntax</TITLE>
</HEAD>
<BODY>
<FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'>Hehehehe. Oops. Thanks for pointing this out. The fixed code should be in CVS now.<BR>
<BR>
-Ken<BR>
<BR>
<BR>
On 1/9/10 11:38 AM, "Jed Brown" <<a href="jed@59A2.org">jed@59A2.org</a>> wrote:<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'>Index: Utilities/IceT/src/CMakeLists.txt<BR>
===================================================================<BR>
RCS file: /cvsroot/ParaView3/ParaView3/Utilities/IceT/src/CMakeLists.txt,v<BR>
retrieving revision 1.8<BR>
diff -u -r1.8 CMakeLists.txt<BR>
--- Utilities/IceT/src/CMakeLists.txt 3 Jun 2009 15:46:18 -0000 1.8<BR>
+++ Utilities/IceT/src/CMakeLists.txt 9 Jan 2010 18:26:40 -0000<BR>
@@ -18,18 +18,18 @@<BR>
"${CMAKE_CURRENT_SOURCE_DIR}/communication"<BR>
"${CMAKE_CURRENT_SOURCE_DIR}/strategies")<BR>
SET(filesToInstall)<BR>
- FOREACH(p IN ${resPath})<BR>
+ FOREACH(p ${resPath})<BR>
SET(tmpFilesToInstall)<BR>
SET(exts "${p}/*.h;${p}/*.hxx;${p}/*.txx")<BR>
- FOREACH(ext IN ${exts})<BR>
+ FOREACH(ext ${exts})<BR>
FILE(GLOB tmpFilesToInstall<BR>
RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"<BR>
"${ext}")<BR>
IF(tmpFilesToInstall)<BR>
SET(filesToInstall "${filesToInstall};${tmpFilesToInstall}")<BR>
ENDIF(tmpFilesToInstall)<BR>
- ENDFOREACH(ext IN ${exts})<BR>
- ENDFOREACH(p IN ${resPath})<BR>
+ ENDFOREACH(ext ${exts})<BR>
+ ENDFOREACH(p ${resPath})<BR>
INSTALL(<BR>
FILES ${filesToInstall}<BR>
DESTINATION "${ICET_INSTALL_INCLUDE_DIR}/ice-t"<BR>
_______________________________________________<BR>
Powered by www.kitware.com<BR>
<BR>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html">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">http://paraview.org/Wiki/ParaView</a><BR>
<BR>
Follow this link to subscribe/unsubscribe:<BR>
<a href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a><BR>
<BR>
<BR>
</SPAN></FONT></BLOCKQUOTE><FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'><BR>
</SPAN></FONT><FONT SIZE="2"><FONT FACE="Consolas, Courier New, Courier"><SPAN STYLE='font-size:10pt'><BR>
**** Kenneth Moreland<BR>
*** Sandia National Laboratories<BR>
*********** <BR>
*** *** *** email: <a href="kmorel@sandia.gov">kmorel@sandia.gov</a><BR>
** *** ** phone: (505) 844-8919<BR>
*** web: <a href="http://www.cs.unm.edu/~kmorel">http://www.cs.unm.edu/~kmorel</a><BR>
</SPAN></FONT></FONT><FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'><BR>
</SPAN></FONT>
</BODY>
</HTML>