On Thu, Jul 3, 2008 at 3:28 AM, Timenkov Yuri <<a href="mailto:ytimenkov@parallels.com">ytimenkov@parallels.com</a>> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d"><br>
<br>
On Thursday 03 July 2008 05:24:07 Miguel A. Figueroa-Villanueva wrote:<br>
> Hello,<br>
><br>
> Since EXECUTABLE_OUTPUT_PATH / LIBRARY_OUTPUT_PATH have been replaced<br>
> with the CMAKE_RUNTIME_OUTPUT_DIRECTORY /<br>
> CMAKE_LIBRARY_OUTPUT_DIRECTORY they shouldn't appear in the GUI<br>
> (CMakeSetup, QtDialog). That gives the impression that they are not<br>
> deprecated as suggested by the documentation.<br>
><br>
> Also, it is confusing when people in fact use the new variables. Say<br>
> you have the following CMakeLists.txt<br>
><br>
> ----<br>
> project(test)<br>
> set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")<br>
> add_executable(hello hello.cxx)<br>
> ----<br>
><br>
> When the user runs the GUI and sees the red EXECUTABLE_OUTPUT_PATH<br>
> variable, which he is used to working with, he can proceed to change<br>
> it and it won't have an effect.<br>
><br>
> Is this an easy fix or should I open a bug item?<br>
</div>Do you regenerate cache? You may have these variables in you CMakeCache.txt<br>
file. Try with clean build output.<br>
<div><div></div><div class="Wj3C7c"><br>
</div></div></blockquote></div><br>CMAKE_MINIMUM_REQUIRED(VERSION 2.6)<br>
PROJECT(foo)<br>
ADD_EXECUTABLE(foo foo.cc)<br><br>This is all that's needed to reproduce this bug (on CMake 2.6.0 with Visual Studio 8 generator).<br><br>-- <br>Philip Lowman