[CMake] xxx_OUTPUT_DIRECTORY is not

2008-12-18 Thread Brad Aisa
I have set CMAKE_xxx_OUTPUT_DIRECTORY (LIBRARY RUNTIME ARCHIVE) at the top of my CMakeLists.txt I then confirmed it had this value for my target properties. But when I build, MSVC adds an additional Target subdirectory, which is not what I want. For example, I want this generated:

Re: [CMake] xxx_OUTPUT_DIRECTORY is not

2008-12-18 Thread Bill Hoffman
Brad Aisa wrote: I have set CMAKE_xxx_OUTPUT_DIRECTORY (LIBRARY RUNTIME ARCHIVE) at the top of my CMakeLists.txt I then confirmed it had this value for my target properties. But when I build, MSVC adds an additional Target subdirectory, which is not what I want. For example, I want this

Re: [CMake] xxx_OUTPUT_DIRECTORY is not

2008-12-18 Thread Brad Aisa
They have different suffixes, so they do not conflict. But thanks for the answer. Bill Hoffman wrote: Brad Aisa wrote: I have set CMAKE_xxx_OUTPUT_DIRECTORY (LIBRARY RUNTIME ARCHIVE) at the top of my CMakeLists.txt I then confirmed it had this value for my target properties. ... You can not

Re: [CMake] xxx_OUTPUT_DIRECTORY is not

2008-12-18 Thread Tyler Roscoe
On Thu, Dec 18, 2008 at 12:48:49PM -0700, Brad Aisa wrote: I have set CMAKE_xxx_OUTPUT_DIRECTORY (LIBRARY RUNTIME ARCHIVE) at the top of my CMakeLists.txt I then confirmed it had this value for my target properties. But when I build, MSVC adds an additional Target subdirectory, which is

Re: [CMake] xxx_OUTPUT_DIRECTORY is not

2008-12-18 Thread Bill Hoffman
Brad Aisa wrote: They have different suffixes, so they do not conflict. But thanks for the answer. So, a custom command can be used to do the copy. There is a feature request for this that has been coming up frequently on the list... :) -Bill