<div dir="ltr"><div><div><div>Hello Petr,<br></div>i don&#39;t understand how this solves the problem, but indeed it does!<br><br>Still i have one small problem. To make regeneration of a clean project as easy as possible, i have a batch file, which first clears all generated data (including cmake cache), an then runs cmake. Since this fails now the first time, i have to run cmake twice in this batch file, but if other errors occour, i get output twice.<br>
<br></div>Maybe if i could understand why your solution works, i could come up with one that works without running cmake once again?<br><br></div>Thanks so far!<br>Janosch<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">
On Wed, May 29, 2013 at 1:34 PM, Petr Kmoch <span dir="ltr">&lt;<a href="mailto:petr.kmoch@gmail.com" target="_blank">petr.kmoch@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr"><div><div>Hi Janosch.<br><br>A solution to this problem which works for me is: if the configurations are not those I want, set them correctly and abort the generation (with a help message).<br><br>I put the following code into the CMakeList after the call to project():<br>

<br>if(CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_CONFIGURATION_TYPES MATCHES FullDebug)<br></div><div>  set(cfgs ${CMAKE_CONFIGURATION_TYPES})<br></div><div>  list(REMOVE_ITEM cfgs MinSizeRel)<br></div><div>  list(APPEND cfg FullDebug)<br>

</div><div>  set(CMAKE_CONFIGURATION_TYPES ${cfgs} CACHE STRING &quot;List of supported configurations.&quot; FORCE)<br>  message(FATAL_ERROR &quot;List of configurations was reset, please re-run CMake.&quot;)<br>endif()<br>

</div><br></div>Hope this helps.<br><br>Petr<br></div><div class="gmail_extra"><br><br><div class="gmail_quote"><div><div class="h5">On Wed, May 29, 2013 at 1:14 PM, gaga bla <span dir="ltr">&lt;<a href="mailto:gagabla0@gmail.com" target="_blank">gagabla0@gmail.com</a>&gt;</span> wrote:<br>

</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div dir="ltr"><div class="gmail_quote"><div dir="ltr"><div><div><div><div>Hello Eric,<br>
</div>thanks for your reply, i tried this, but in my case it doesn&#39;t work. I made a function that first sets the configuration types (using your line of code) and then calls the project function. Using this function instead of the project function itself, still all configurations are beeing generated.<br>



</div>I browsed through the cmake sources and modules, but i coudn&#39;t find the place that reintroduces those configurations.<br></div>It looks like a bug to me, later on i will try to produce an example.<br><br></div>


Kind regards<br>
Janosch<br></div><div><div><div><div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, May 28, 2013 at 10:01 PM, Eric Clark <span dir="ltr">&lt;<a href="mailto:eclark@ara.com" target="_blank">eclark@ara.com</a>&gt;</span> wrote:<br>



<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">





<div link="blue" vlink="purple" lang="EN-US">
<div>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Our projects limit the types to just Debug and Release. However, what I found was that you had to set the variable before every call to project(…). What we
 did was we created a module called BuildTypes.cmake and include it first thing in every list file. The file has one line of code in it that looks like this:<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">set(CMAKE_CONFIGURATION_TYPES Debug Release CACHE TYPE INTERNAL FORCE)<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">This does the trick for us. Hope this helps…<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d">Eric<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1f497d"><u></u> <u></u></span></p>
<p class="MsoNormal"><b><span style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;">From:</span></b><span style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;"> <a href="mailto:cmake-bounces@cmake.org" target="_blank">cmake-bounces@cmake.org</a> [mailto:<a href="mailto:cmake-bounces@cmake.org" target="_blank">cmake-bounces@cmake.org</a>]
<b>On Behalf Of </b>gaga bla<br>
<b>Sent:</b> Tuesday, May 28, 2013 12:55 PM<br>
<b>To:</b> <a href="mailto:cmake@cmake.org" target="_blank">cmake@cmake.org</a><br>
<b>Subject:</b> [CMake] Problems setting CMAKE_CONFIGURATION_TYPES for Visual Studio<u></u><u></u></span></p><div><div>
<p class="MsoNormal"><u></u> <u></u></p>
<div>
<p class="MsoNormal">Hello, I have problems reducing available configuration types for a Visual Studio project.<u></u><u></u></p>
<p class="MsoNormal">No matter what I do, the project always contains all four configuration types.<u></u><u></u></p>
<p class="MsoNormal"> <u></u><u></u></p>
<p class="MsoNormal">I have two files involved, I tried to strip everything that seemed to be unimportant:<u></u><u></u></p>
<p class="MsoNormal"> <u></u><u></u></p>
<p class="MsoNormal">CmakeLists.txt (Main file):<u></u><u></u></p>
<p class="MsoNormal">------------------------------------<u></u><u></u></p>
<p class="MsoNormal">include(&quot;... Helpers.cmake&quot;)<u></u><u></u></p>
<p class="MsoNormal">configureMyProject(&quot;MyProject&quot;)<u></u><u></u></p>
<p class="MsoNormal">message(&quot;Config types (outside): ${CMAKE_CONFIGURATION_TYPES}&quot;)<u></u><u></u></p>
<p class="MsoNormal">------------------------------------<u></u><u></u></p>
<p class="MsoNormal"> <u></u><u></u></p>
<p class="MsoNormal">Helpers.cmake:<u></u><u></u></p>
<p class="MsoNormal">------------------------------------<u></u><u></u></p>
<p class="MsoNormal">if(__myhelpers)<u></u><u></u></p>
<p class="MsoNormal">                return()<u></u><u></u></p>
<p class="MsoNormal">endif()<u></u><u></u></p>
<p class="MsoNormal">set(__myhelpers YES)<u></u><u></u></p>
<p class="MsoNormal"> <u></u><u></u></p>
<p class="MsoNormal">function(configureMyProject MY_NAME ........)<u></u><u></u></p>
<p class="MsoNormal">  set(CMAKE_CONFIGURATION_TYPES &quot;Debug;RelWithDebInfo&quot; CACHE STRING &quot;&quot; FORCE)<u></u><u></u></p>
<p class="MsoNormal">  message(&quot;Config types (before): ${CMAKE_CONFIGURATION_TYPES}&quot;)
<u></u><u></u></p>
<p class="MsoNormal">  project(${MY_NAME})
<u></u><u></u></p>
<p class="MsoNormal">  message(&quot;Config types (after): ${CMAKE_CONFIGURATION_TYPES}&quot;)
<u></u><u></u></p>
<p class="MsoNormal">  set(CMAKE_CONFIGURATION_TYPES &quot;Debug;RelWithDebInfo&quot; CACHE STRING &quot;&quot; FORCE)
<u></u><u></u></p>
<p class="MsoNormal">  message(&quot;Config types (after 2): ${CMAKE_CONFIGURATION_TYPES}&quot;)<u></u><u></u></p>
<p class="MsoNormal">  ...<u></u><u></u></p>
<p class="MsoNormal">  add_library(...)<u></u><u></u></p>
<p class="MsoNormal">  ...<u></u><u></u></p>
<p class="MsoNormal">endfunction()<u></u><u></u></p>
<p class="MsoNormal">------------------------------------<u></u><u></u></p>
<p class="MsoNormal"> <u></u><u></u></p>
<p class="MsoNormal">I then get the following output:<u></u><u></u></p>
<p class="MsoNormal">------------------------------------<u></u><u></u></p>
<p class="MsoNormal">Config types (before): Debug;RelWithDebInfo<u></u><u></u></p>
<p class="MsoNormal">Config types (after): Debug;Release;MinSizeRel;RelWithDebInfo<u></u><u></u></p>
<p class="MsoNormal">Config types (after 2): Debug;RelWithDebInfo<u></u><u></u></p>
<p class="MsoNormal">Config types (outside): Debug;RelWithDebInfo<u></u><u></u></p>
<p class="MsoNormal">------------------------------------<u></u><u></u></p>
<p class="MsoNormal"> <u></u><u></u></p>
<p class="MsoNormal">So it seems to me, that the call of the project-function resetted the configuration types and created then the project accordingly.<u></u><u></u></p>
<p class="MsoNormal">Is this a bug or am I doing something wrong? Does anyone know a workaround?<u></u><u></u></p>
<p class="MsoNormal"> <u></u><u></u></p>
<p class="MsoNormal">Kind regards<u></u><u></u></p>
<p class="MsoNormal">Janosch Scharlipp<u></u><u></u></p>
</div>
</div></div></div>
</div>

</blockquote></div><br></div>
</div></div></div></div></div><br></div>
<br></div></div><span class="HOEnZb"><font color="#888888">--<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></font></span></blockquote></div><br></div>
</blockquote></div><br></div>