On Sun, Jun 27, 2010 at 11:05 AM, Hicham Mouline <span dir="ltr">&lt;<a href="mailto:hicham@mouline.org">hicham@mouline.org</a>&gt;</span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
hello<br>
<br>
I assign the list of all directories the names of which starts with a<br>
pattern like   pattern_.... to a cmake variable which I then pass as a<br>
preprocessor macro:<br>
<br>
FILE(GLOB MYPROJECT_LIST_SYSTEMS RELATIVE ${CMAKE_SOURCE_DIR} system_*)<br>
<br>
MYPROJECT_LIST_SYSTEMS is then a cmake &quot;list&quot;, a string with semicolon<br>
separators.<br>
<br>
What is the maximum number of entries in the list that cmake handles?<br>
Or what is the maximum length of a cmake string?<br></blockquote><div><br></div><div>In theory, it should be around 2G for 32-bit build of CMake.</div><div><br></div><div>In practice, I bet you&#39;ll run into the beginnings of performance issues if you start to have strings that are 10s or 100s of megabytes large.</div>
<div><br></div><div>There&#39;s no hard-coded or stack-based limits in CMake that I&#39;m aware of -- it should be simply based on how much memory CMake can allocate... so: hopefully, larger than anything you can throw at it... :-)</div>
<div><br></div><div><br></div><div>HTH,</div><div>David</div><div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<br>
Regards,<br>
<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 CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br>
</blockquote></div><br>