Re: [CMake] Cannot find UpdateCommand or GITCommand configuration key.

2010-05-08 Thread Bill Lorensen
2.8.1 worked great. Thanks, Bill On Sat, May 8, 2010 at 1:12 PM, Bill Hoffman wrote: > On 5/8/2010 12:40 PM, Bill Lorensen wrote: >> >> OK, I believe that CMake version 2.8.0 does not support git properly. >> I just pulled the nightly cmake and it configured my project correctly >> (I think). A

Re: [CMake] Cannot find UpdateCommand or GITCommand configuration key.

2010-05-08 Thread Bill Hoffman
On 5/8/2010 12:40 PM, Bill Lorensen wrote: OK, I believe that CMake version 2.8.0 does not support git properly. I just pulled the nightly cmake and it configured my project correctly (I think). At least on linux. I'm not sure about the latest 2.8.x version. Try 2.8.1 from here: http://www.cm

Re: [CMake] Cannot find UpdateCommand or GITCommand configuration key.

2010-05-08 Thread Bill Lorensen
OK, I believe that CMake version 2.8.0 does not support git properly. I just pulled the nightly cmake and it configured my project correctly (I think). At least on linux. I'm not sure about the latest 2.8.x version. Bill On Sat, May 8, 2010 at 12:21 PM, Bill Lorensen wrote: > Bill, > > I just p

Re: [CMake] Cannot find UpdateCommand or GITCommand configuration key.

2010-05-08 Thread Bill Lorensen
Bill, I just pulled the latest cmake. When I configure cmake with cmake I get the same warning: CTest cannot determine repository type. Please set UPDATE_TYPE to 'cvs' or 'svn'. CTest update will not work. I suspect that since the cmake project uses scripts to do the builds, that the CMakeLists.

Re: [CMake] Cannot find UpdateCommand or GITCommand configuration key.

2010-05-08 Thread Bill Lorensen
Attached is my DartConfiguration.tcl I'm using cmake version 2.8.0 Bill On Sat, May 8, 2010 at 9:35 AM, Bill Hoffman wrote: > On 5/7/2010 5:25 PM, Bill Lorensen wrote: >> >> I'm willing to try anything. >> >> Let's start from scratch. >> >> What are the proper cmake setting I should use? >> >>

Re: [CMake] Cannot find UpdateCommand or GITCommand configuration key.

2010-05-08 Thread Bill Hoffman
On 5/7/2010 5:25 PM, Bill Lorensen wrote: I'm willing to try anything. Let's start from scratch. What are the proper cmake setting I should use? The goal: Have a CMakeLists.txt file that will allow users to type make Experimental or make Nightly and do the right thing. Just like things worked

Re: [CMake] Cannot find UpdateCommand or GITCommand configuration key.

2010-05-07 Thread Bill Lorensen
I'm willing to try anything. Let's start from scratch. What are the proper cmake setting I should use? The goal: Have a CMakeLists.txt file that will allow users to type make Experimental or make Nightly and do the right thing. Just like things worked with cvs. Bill On Fri, May 7, 2010 at 5:2

Re: [CMake] Cannot find UpdateCommand or GITCommand configuration key.

2010-05-07 Thread Tyler Roscoe
On Fri, May 07, 2010 at 05:10:59PM -0400, Bill Lorensen wrote: > I get the subject message. > > I have defined > set( CTEST_GIT_COMMAND "git" ) > SET(UPDATE_COMMAND "${GITCOMMAND}") > SET(UPDATE_OPTIONS "${GIT_UPDATE_OPTIONS}") Did you try CTEST_UPDATE_COMMAND and CTEST_UPDATE_OPTIONS? Are you s

[CMake] Cannot find UpdateCommand or GITCommand configuration key.

2010-05-07 Thread Bill Lorensen
I have a project that uses VTK. The project uses git for its repository. I get the subject message. I have defined set( CTEST_GIT_COMMAND "git" ) SET(UPDATE_COMMAND "${GITCOMMAND}") SET(UPDATE_OPTIONS "${GIT_UPDATE_OPTIONS}") How can I resolve this issue. Bill __