Re: [CMake] How To change VS2005 Output directory

2009-02-03 Thread David . Karr
From: "LaViolette, Alan" > > thanks that works. It is kind of a hack would be nice if the generator > had an option to not append the configuration. >> It sounds like you need the PREFIX hack. Not sure if it will make the >> "Win32_Debug" folder for you though, you'll have to try it and see. >>

Re: [CMake] How To change VS2005 Output directory

2009-02-03 Thread LaViolette, Alan
: LaViolette, Alan Cc: Tyler; cmake@cmake.org Subject: Re: [CMake] How To change VS2005 Output directory On Mon, Feb 2, 2009 at 7:13 PM, LaViolette, Alan wrote: I changed the CMAKE_CFG_INTDIR and I don't see any changes in the project file. I am setting set (CMAKE_RUNTIME_OUTPUT_DIRE

Re: [CMake] How To change VS2005 Output directory

2009-02-02 Thread Philip Lowman
On Mon, Feb 2, 2009 at 7:13 PM, LaViolette, Alan < alaviole...@overwatch.textron.com> wrote: > I changed the CMAKE_CFG_INTDIR and I don't see any changes in the > project file. > > I am setting > set (CMAKE_RUNTIME_OUTPUT_DIRECTORY > ${CMAKE_SOURCE_DIR}/bin/${CMAKE_PLATFORM}) > > > The problem

Re: [CMake] How To change VS2005 Output directory

2009-02-02 Thread LaViolette, Alan
nName) is expanded by the IDE to the configuration like Debug or Release. Thanks Alan. -Original Message- From: Tyler [mailto:ty...@cryptio.net] Sent: Monday, February 02, 2009 6:39 PM To: LaViolette, Alan Cc: cmake@cmake.org Subject: Re: [CMake] How To change VS2005 Output directory On Mon

Re: [CMake] How To change VS2005 Output directory

2009-02-02 Thread Tyler
On Mon, Feb 02, 2009 at 05:00:13PM -0500, LaViolette, Alan wrote: > From what I can see the VCLinker OutputFile is set to the value of > target.GetDirectory(configName). > (cmLocalVisualStudio7Generator::OutputBuildTool() ~ line 953) > > The cmTarget::GetDirectory() calls > cmGlobalVisualStudio7Ge

Re: [CMake] How To change VS2005 Output directory

2009-02-02 Thread LaViolette, Alan
erator does not call this from what I can tell -Original Message- From: Tyler Roscoe [mailto:ty...@cryptio.net] Sent: Monday, February 02, 2009 3:39 PM To: LaViolette, Alan Cc: cmake@cmake.org Subject: Re: [CMake] How To change VS2005 Output directory On Mon, Feb 02, 2009 at 02:12:53PM

Re: [CMake] How To change VS2005 Output directory

2009-02-02 Thread Tyler Roscoe
On Mon, Feb 02, 2009 at 02:12:53PM -0500, LaViolette, Alan wrote: > I would like to use the $(ConfigurationName) VS macro Investigate CMAKE_CFG_INTDIR. tyler ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

[CMake] How To change VS2005 Output directory

2009-02-02 Thread LaViolette, Alan
The VS2005 generator looks to always append the configuration name into the output directory. I have a project that I don't want this to happen. For example my output path need to look like this /Build/Debug/Plugin or /Build/Release/Plugin I would like to use the $(ConfigurationName)