On Sun, Jan 8, 2012 at 7:29 AM, Renato Utsch <span dir="ltr">&lt;<a href="mailto:renatoutsch@gmail.com">renatoutsch@gmail.com</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, I have been experimenting some issue with visual studio and<br>
couldn&#39;t fix them, even when searching in google for help :O<br>
<br>
So, I have 2 main issues:<br>
<br>
1. When CMake creates the visual studio solution, it configures to the<br>
&quot;Debug win32&quot; mode, but I wanted to be able to choose from &quot;Release&quot;<br>
to &quot;Debug&quot;.<br>
Changing the CMAKE_BUILD_TYPE to &quot;Release&quot; didn&#39;t seem to help...<br>
<br><br></blockquote><div><br>This can&#39;t be configured by CMake, because the current configuration is stored in a binary format file along side the solution file.  This file contains all sorts of things such as all the arguments for the Debugger panel.  I don&#39;t remember what the name of the file is offhand, because I&#39;m not at my windows machine at the moment.  This file is created after you first open the solution file.  What this means, though is there really isn&#39;t a good way for CMake to change what the default build configuration is.<br>

<br>As far as I can tell VS just picks the first configuration.  I don&#39;t know if it&#39;s simply an alphabetical choice or the first configuration in the projects.  Some simple experiments with hand modifying the project files could yield the answer.  If it&#39;s based on the order in the project files, CMake could be able to write the files differently, but if VS is being clever and simply sorting them in ASCII order then it&#39;s game over.<br>

<br>James  <br></div></div>