<div dir="ltr">Hi,<div class="gmail_extra"><br><div class="gmail_quote">On Sat, Apr 27, 2013 at 8:06 AM, Lloyd <span dir="ltr"><<a href="mailto:lloydkl.tech@gmail.com" target="_blank">lloydkl.tech@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi,<div><br></div><div>I am studying to compile an application using CMake in Cygwin. I am installing a file using the install command based on the value of CONFIGURATIONS variable.</div>
<div><br>
</div><div>May I know the default configuration (debug, release) in cygwin</div><div><br></div><div>I get Debug folders in the build directory when I build the same project with visual studio, but in the cygwin build directory, no Debug or Release folders are created!</div>
<div><br></div><div>Hoe can solve this?</div><div><br></div><div>Is there any option in make to specify the build?</div><div></div></div></blockquote></div><br></div><div class="gmail_extra" style>You specify the build type using CMAKE_BUILD_TYPE when invoking cmake for generators that only support 1 type of build, like makefiles. There is no Debug or Release folder because these generators do not allow to switch between the build types within a single build directory, you'll have to use separate build directories for the different types of builds.</div>
<div class="gmail_extra" style><br></div><div class="gmail_extra" style>Andreas</div></div>