Hello.<br><br>1. Actually my first question is simpler. How can I generate makefiles for debug/release configurations (which as far as I can understand should be possible in default)<br>I am generating makefiles with a command :<br>
<br>cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug .<br><br>then when I execute mingw32-make with created makefile and it seems to ignore enything regarding debug configuration. If I generate makefiles with -DCMAKE_BUILD_TYPE=Release genereted makefiles are exactly the same.<br>
<br>2. How to create new build type? For now I have this
<a href="http://www.cmake.org/Wiki/CMake_FAQ#How_can_I_extend_the_build_modes_with_a_custom_made_one_.3F">http://www.cmake.org/Wiki/CMake_FAQ#How_can_I_extend_the_build_modes_with_a_custom_made_one_.3F</a>
from cmake faq which should solve the problem when I'll be able to
generate DIFFERENT makefiles for those configurations.<br><br>3. Is it possible to generate one makefile with separate targets for debug/release/myconfiguration ? The one that I could use like:<br><br>make debug<br>make release<br>
make my_configuration<br><br>I am using cmake version 2.6.<br><br>Thanks in advance<br><br><br><br><br>