Re: [CMake] Building out of source

2008-12-05 Thread Robert Dailey
On Fri, Dec 5, 2008 at 2:37 PM, David Cole <[EMAIL PROTECTED]> wrote: > What is the output? That should definitely work. I do it all the time with > Visual Studio... > Is this Vista? (I use XP and Vista, Vista has more seemingly random "file > can't be created/deleted" problems) > Are you running

Re: [CMake] Building out of source

2008-12-05 Thread David Cole
What is the output? That should definitely work. I do it all the time with Visual Studio... Is this Vista? (I use XP and Vista, Vista has more seemingly random "file can't be created/deleted" problems) Are you running as admin or non-admin? (I always run as non-admin) Which version of cmake are yo

Re: [CMake] Building out of source

2008-12-05 Thread Robert Dailey
On Fri, Dec 5, 2008 at 12:44 PM, David Cole <[EMAIL PROTECTED]> wrote: > They are placed in the current directory. Run it from another directory and > then give the path to the source tree, as in: > checkout source tree to "source" directory > mkdir build > cd build > cmake -G "Unix Makefiles" ../

Re: [CMake] Building out of source

2008-12-05 Thread David Cole
They are placed in the current directory. Run it from another directory and then give the path to the source tree, as in: checkout source tree to "source" directory mkdir build cd build cmake -G "Unix Makefiles" ../source In this example, source and build are siblings... HTH, David On Fri, Dec

Re: [CMake] Building out of source

2008-12-05 Thread Sam Baker
argument -DCMAKE_INSTALL_PREFIX:STRING="../../project_builds/tools" Sam From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert Dailey Sent: Friday, December 05, 2008 10:15 AM To: cmake Subject: [CMake] Building out of source Hi,

[CMake] Building out of source

2008-12-05 Thread Robert Dailey
Hi, Instead of using the GUI frontend for CMake on windows, I'm choosing to use the command line directly (Don't ask why). How can I specify the directory for which the target files are placed when I run "cmake -G"? Right now all of the vcproj files and cache are being placed in the same directori